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


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


System类clearProperty()方法

  • clearProperty() 方法可在java.lang包。
  • clearProperty() 方法用于删除或清除给定参数 (property_name) 表示的属性值。
  • clearProperty() 方法是静态的,所以这个方法也可以用类名访问。
  • clearProperty() 方法可能会抛出各种类型的异常,异常如下:
    • 安全异常:如果特定方法 checkPropertyAcess() 不允许访问该方法中的给定系统属性。
    • NullPointerException :如果给定的系统属性为空。
    • 非法参数异常:如果给定的系统属性值为空。

用法:

    public static String clearProperty(String property);

参数:

  • property– 表示要删除的属性的名称。

返回值:

这个方法的返回类型是String,它返回 System 属性的旧字符串值,如果该 "property_name" 没有属性值,则返回 null。

例:

// Java program to demonstrate the example of 
// clearProperty() method of System Class.

public class ClearPropertyMethod {
    public static void main(String[] args) {
        // By using  getProperty() method is used 
        // to get the value of the property
        System.out.println(System.getProperty("user.name"));

        // By using  clearProperty() method is used to 
        // clear the value of the property
        System.clearProperty("user.name");

        // Display the value of the property
        System.out.println("After clearProperty()...");
        System.out.println(System.getProperty("user.name"));
    }
}

输出

E:\Programs>javac ClearPropertyMethod.java
E:\Programs>java ClearPropertyMethod
root
After clearProperty()...
null


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java System class clearProperty() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。