System.setProperty(String key, String value) has the following syntax.
public static String setProperty(String key, String value)
In the following code shows how to use System.setProperty(String key, String value) method.
//from w w w .j a v a2 s . c o m public class Main { public static void main(String[] args) { System.setProperty("java.runtime.version", "Java Runtime 1.6.0"); System.out.println(System.getProperty("java.runtime.version" )); } }
The code above generates the following result.