setProperty()
方法setProperty()方法在java.lang包中可用。
setProperty()方法用于将给定参数(system_property)表示的系统属性与给定另一个参数(system_property_value)一起设置。
setProperty()方法是静态方法,因此也可以使用类名进行访问。
setProperty()方法方法在设置系统属性时会引发各种异常
SecurityException:在这种例外情况下,checkPermission()
当安全管理器存在时,其方法不允许访问给定的系统属性。
NullPointerException:在此异常中,如果给定的system_property或给定的system_property_value为null。
IllegalArgumentException:在此异常中,如果给定的系统属性为null。
语法:
public static String setProperty( String system_property, String system_property_value);
参数:
ssystem_property –表示系统属性的名称。
ssystem_property_value –表示系统属性的值。
返回值:
此方法的返回类型为String,如果存在则返回系统属性的旧值,否则返回null。
示例
//Java程序演示的例子 // setProperty()系统类的方法。 import java.lang.*; import java.util.*; public class SetPropertyMethod { public static void main(String[] args) { //显示以前的操作系统 //设置属性之前的体系结构 System.out.print("Previous os name :" + " "); System.out.print(System.getProperty("os.name")); System.clearProperty("os.name"); System.setProperty("os.name", "Ubuntu"); System.out.println(); //显示新的操作系统 //设置属性后的体系结构 System.out.print("New os name :" + " "); System.out.print(System.getProperty("os.name")); } }
输出结果
E:\Programs>javac SetPropertyMethod.java E:\Programs>java SetPropertyMethod Previous os name : Linux New os name : Ubuntu