當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。