Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 573525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:44:00+00:00 2026-05-13T13:44:00+00:00

I am adding some functionality to an existing application to show debug info. When

  • 0

I am adding some functionality to an existing application to show debug info. When examining an error from the error log view it shows something called “session data”, typically it looks like:

eclipse.buildId=M20090917-0800
java.version=1.6.0_11
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=sv_SE
Framework arguments:  -product org.eclipse.epp.package.rcp.product
Command-line arguments:  -os win32 -ws win32 -arch x86 -product org.eclipse.epp.package.rcp.product

This is something that could be useful to know. how can I get this information?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T13:44:00+00:00Added an answer on May 13, 2026 at 1:44 pm

    Some of those information should be able from a Plugin through the org.eclipse.core.runtime.Platform class, as shown by the org.eclipse.debug.internal.core.SystemVariableResolver source code:

    public String resolveValue(IDynamicVariable variable, String argument) throws CoreException {
        if ("ARCH".equals(argument)) { //$NON-NLS-1$ 
            return Platform.getOSArch(); 
        } else if ("ECLIPSE_HOME".equals(argument)) { //$NON-NLS-1$ 
            URL installURL = Platform.getInstallLocation().getURL(); 
            IPath ppath = new Path(installURL.getFile()).removeTrailingSeparator(); 
            return getCorrectPath(ppath.toOSString()); 
        } else if ("NL".equals(argument)) { //$NON-NLS-1$ 
            return Platform.getNL(); 
        } else if ("OS".equals(argument)) { //$NON-NLS-1$ 
            return Platform.getOS(); 
        } else if ("WS".equals(argument)) { //$NON-NLS-1$ 
            return Platform.getWS(); 
        } 
        return null;
    } 
    

    Platform.getCommandLineArgs() should complete the display for the eclipse session (not for your program though).


    For a RCP program, see this thread

    Using the Application start(IApplicationContext context) method:

    String[] args = (String[]) context.getArguments().get(IApplicationContext.APPLICATION_ARGS);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently adding some photo-taking functionality to my application. I'm curious about something, though.
I'm adding some functionality to an existing code base that uses pure C functions
I'm adding some functionality to an existing function. I need to insert an additional
I am working on a large application and am adding some drag/drop functionality to
I'm adding copy and paste functionality to an existing Windows application. This MSDN page
I'm adding functionality to an existing Java application that's already been deployed extensively. (So
I'm adding some functionality to an existing 'popup' in an ASP.NET website. The popup
My company is adding some rich calendar functionality to our Swing application. We want
I am adding some functionality to an application that prints to a USB connected
I'm writing an assignment which involves adding some functionality to PostgreSQL on a Solaris

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.