java - Eclipse System property -


I have to set the value of java.library.path to a system property c: \ somepath. I know that I have to add it to the VM Args section. Some can provide actual syntax.

argument is

  -Djava.library.path = c: / Somepath  

to verify that this is correct:

  string key = "java.library.path"; System.out.printf ("% s =% s% n", key, System.getProperty (key));  

Comments