Java System clearProperty()方法

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

1 语法

public static String clearProperty(String key)

2 参数

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

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java System clearProperty()方法
 */
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:/yiidian/java");

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

输出结果为:

C:/yiidian/java

 

热门文章

优秀文章