| Author |
getting list of JRE args
|
D Preethi
Ranch Hand
Joined: May 24, 2008
Posts: 68
|
|
Hi All,
I have a scenario in which I am passing a list of jre args to my application, and based on some of the jre args, i need to have some logic in my application to execute some code.
Is there any API which could help me get the list of all JRE args that I passed to my application when I started it up?
Thanks in advance,
Preethi
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
How about the String[] argument to your public static void main method?
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Greg Charles
Bartender
Joined: Oct 01, 2001
Posts: 2542
|
|
Rob, I think he's talking about parameters given to the JVM, not the application parameters.
"D", any parameters of the form -Dproperty=value can be retrieved through System.getProperties(). 99% of the time, that's all you need. If you are in that last 1%, take a look at RuntimeMXBean in the Java API. It might be able to give you the information you need.
|
 |
 |
|
|
subject: getting list of JRE args
|
|
|