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


Java Java.lang.System.setProperty()用法及代碼示例



描述

這個java.lang.System.setProperty() 方法設置指定的係統屬性key

聲明

以下是聲明java.lang.System.setProperty()方法

public static String setProperty(String key, String value)

參數

  • key- 這是係統屬性的名稱。

  • value- 這是係統屬性的值。

返回值

此方法返回係統屬性的先前值,如果沒有,則返回 null。

異常

  • SecurityException- 如果安全管理器存在並且其 checkPermission 方法不允許設置指定的屬性。

  • NullPointerException- 如果鍵或值為空。

  • IllegalArgumentException- 如果鍵為空。

示例

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

package com.tutorialspoint;

import java.lang.*;

public class SystemDemo {

   public static void main(String[] args) {

      // prints Java Runtime Version before property set
      System.out.print("Previous:");
      System.out.println(System.getProperty("java.runtime.version" ));
      System.setProperty("java.runtime.version", "Java Runtime 1.6.0");
     
      // prints Java Runtime Version after property set
      System.out.print("New:");
      System.out.println(System.getProperty("java.runtime.version" ));
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Previous:1.8.0_65-b17
New:Java Runtime 1.6.0

相關用法


注:本文由純淨天空篩選整理自 Java.lang.System.setProperty() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。