I am running a java application from the command line. Can I specify a command line argument to set the current running directory to something other than where the application is actually going to run?
Thanks
|
I am running a java application from the command line. Can I specify a command line argument to set the current running directory to something other than where the application is actually going to run? Thanks |
|||||||||
|
|
I don't see any such option in the Java command-line documentation. |
|||
|
|
|
There is a JVM argument |
||||
|
If you want to change the current directory, you'll have to use JNI and invoke a native API from your Java code. For example, for Windows you would use SetCurrentDirectory |
|||||
|
|
|
If it all possible I would rather use a script to run the java application and set the directory in the script:
The JNI-solution may affect all kinds of relative paths in your application; for examples the classpath you put in. |
|||
|
|