Set a system property in Java
Description
The following code shows how to set a system property.
Example
// ww w .j a va 2s. c om
public class Main {
public static void main(String[] argv) throws Exception {
String previousValue = System.setProperty("application.property", "newValue");
}
}