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?
args.lengthtoo - it'sgetInputArguments()that is splitting up the quoted argument (i.e. it's not the JVMs fault!) – DNA Feb 3 at 18:55System.getProperties().-Dxxx=yyydefines 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