I am trying to read the system property "user.dir" from the command line for a particular java process. I have seen several examples of obtaining the system property from Java code (System.getProperty), however I need the system property set for another java process.

How can I obtain the same?

link|improve this question
You can set the system property via command line parameter: -Duser.dir=foo. Is that what you mean? – home Jan 5 at 7:09
The only way to know is to have the other process tell you ... or otherwise poke about and try to see how it was setup ... perhaps with a debugger attached ... – pst Jan 5 at 7:24
The 'java process' - is it being launched as a Process from within your code? – Andrew Thompson Jan 5 at 7:25
The java process is a third party java process - such as tomcat. I can either use a command-line/ a java program to obtain the system properties of the third party java process – user1131528 Jan 5 at 8:31
feedback

2 Answers

To get system property you can use System.getProperty()

System.out.println("User Home Path: "+System.getProperty("user.dir"));

To set System property you can use System.setProperty()

System.setProperty("user.dir", "E:\\Eclipse Indigo workspace");
link|improve this answer
feedback

See below link with below excerpt:

http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html

The setProperties method changes the set of system properties for the current running application. These changes are not persistent. That is, changing the system properties within an application will not affect future invocations of the Java interpreter for this or any other application. The runtime system re-initializes the system properties each time its starts up. If changes to system properties are to be persistent, then the application must write the values to some file before exiting and read them in again upon startup.

link|improve this answer
Thanks for the prompt answers, Sunil and Garry.. Maybe my question was a little unclear..I wish to know the system properties set by a third party java process such as tomcat. If I can get the process Id of the third party java process, is there any way to get its system properties from the command line/a different java application? Thanks again! – user1131528 Jan 5 at 8:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.