位置:首页 > Java技术 > java.lang > java.lang.System.clearProperty()方法实例

java.lang.System.clearProperty()方法实例

java.lang.System.clearProperty() 方法删除指定键指示的系统属性。

声明

以下是java.lang.System.clearProperty()方法的声明

public static String clearProperty(String key)

参数

  • key -- 此是要移除的系统属性的名称。

返回值

此方法返回系统属性之前的字符串值,如果没有此键的属性,则返回null。

异常

  • SecurityException --如果安全管理器存在并且其checkPropertyAccess方法不允许访问指定的系统属性。

  • NullPointerException -- 如果key是null。

  • IllegalArgumentException -- 如果key是空的。

例子

下面的例子显示java.lang.System.clearProperty()方法的使用。

package com.yiibai;

import java.lang.*;

public class SystemDemo {

   public static void main(String[] args) {

     // returns the previous string value of the system property
     String s = System.clearProperty("java.class.path");

     // sets the system property
     System.setProperty("user.dir", "C:/yiibai/java");

     // gets the system property after changes done by setProperty
     System.out.println(System.getProperty("user.dir"));
   }
} 

让我们来编译和运行上面的程序,这将产生以下结果:

C:/yiibai/java