当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java System clearProperty()用法及代码示例


Java System 类的 clearProperty() 方法删除指定键指示的系统属性。

用法

public static String clearProperty(String key)

参数

键 - 删除系统属性的名称

返回

  1. 系统属性的前一个字符串值。
  2. 如果该键没有属性,则它将返回 null。
  3. 如果 Key 为 null,则抛出 NullPointerException。
  4. 如果 key 为空,则抛出 IllegalArgumentException。

例子1

public class SystemClearPropertyExample1 {
	public static void main(String[] args) {
		//defaut property 
		System.out.println("Before using clearproperty = "+System.getProperty("java.class.path")); 
        String a=System.clearProperty("java.class.path");//using clearproperty
        System.out.println("After using clearproperty = "+System.getProperty("java.class.path"));
}
}

输出:

Before using clearproperty = E:\Practicecorejava\FirstThisDemo\bin;E:\mysql jar file\com.mysql.jdbc_5.1.5.jar
After using clearproperty = null

例子2

public class SystemClearPropertyExample2 {
	public static void main(String[] args) {
		//getting property
		System.out.println("Default Property = "+System.getProperty("user.dir"));
		//clearing property
        String a=System.clearProperty("user.dir");
        //setting property
        System.setProperty("user.dir", "JavaTpoint");
        System.out.println("New Property = "+System.getProperty("user.dir"));
}
}

输出:

Default Property = E:\Practicecorejava\FirstThisDemo
New Property = JavaTpoint





相关用法


注:本文由纯净天空筛选整理自 Java System clearProperty() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。