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


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



描述

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

声明

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

public static String clearProperty(String key)

参数

key- 这是要删除的系统属性的名称。

返回值

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

异常

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

  • NullPointerException- 如果键为空。

  • IllegalArgumentException- 如果键为空。

示例

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

package com.tutorialspoint;

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:/tutorialspoint/java");

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

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

C:/tutorialspoint/java

相关用法


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