Java System setProperties()方法
java.lang.System.setProperties() 方法设置系统属性的属性参数。
1 语法
public static void setProperties(Properties props)
2 参数
props : 这是新的系统属性。
3 返回值
此方法不返回任何值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java System setProperties()方法
*/
import java.lang.*;
public class SystemDemo {
public static void main(String[] args) {
// prints Java Runtime Version before property set
System.out.print("Previous : ");
System.out.println(System.getProperty("java.runtime.version"));
Properties p = System.getProperties();
p.put("java.runtime.version", "Java Runtime 1.6.0");
System.setProperties(p);
// prints Java Runtime Version after property set
System.out.print("New : ");
System.out.println(System.getProperty("java.runtime.version"));
}
}
输出结果为:
Previous : 1.6.0_22-b22
New : Java Runtime 1.6.0