Consider a main method:

public static void main(String[] args) throws Exception {
    System.out.println("property='" +  System.getProperty("property") + "'");
    List<String> inputArgs = ManagementFactory.getRuntimeMXBean().getInputArguments();
    System.out.println("jvm input args size: " + inputArgs.size());
    System.out.println("jvm input args: " + inputArgs);
} 

Results from running the program:

>java -Dproperty=hey!
property='hey!'
jvm input args size: 1
jvm input args: [-Dproperty=hey!]

>java -Dproperty="one two three"
property='one two three'
jvm input args size: 3 //but there's only one input property!
jvm input args: [-Dproperty=one, two, three] //!!!

At least that's the behavior on Oracle/Sun's jvm 6 on mac) & on win (haven't tested elsewhere).

Does anyone know a way of getting input args that is reliable when system properties contain spaces?

link|improve this question

75% accept rate
Print out args.length too - it's getInputArguments() that is splitting up the quoted argument (i.e. it's not the JVMs fault!) – DNA Feb 3 at 18:55
1  
Whoever's fault it is - the behavior is clearly wrong. I suggest filing a bug with Oracle. – Aleks G Feb 3 at 19:01
If what you want is system properties, then access System.getProperties(). -Dxxx=yyy defines a system property. The parsing of the command line properties depends on your shell as well as the JVM. – DwB Feb 3 at 19:19
feedback

1 Answer

up vote 1 down vote accepted

Apparently it's a known issue which may have been fixed in JDK7: http://bugs.sun.com/bugdatabase/view_bug.do;jsessionid=f84d44729bd8affffffffeb9b87963e2d752?bug_id=6459832

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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