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


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



描述

這個java.lang.System.setProperties() 方法將係統屬性設置為Properties參數。

聲明

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

public static void setProperties(Properties props)

參數

props─ 這是新的係統屬性。

返回值

此方法不返回任何值。

異常

SecurityException- 如果存在安全管理器並且其 checkPropertiesAccess 方法不允許訪問係統屬性。

示例

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

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"));

      Properties p = System.getProperties();
      p.put("java.runtime.version", "Java Runtime 1.6.0");
      System.setProperties(p);
      
      // prints Java Runtime Version after property set
      System.out.print("New:");
      System.out.println(System.getProperty("java.runtime.version"));
   }
}

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

Previous:1.6.0_22-b22
New:Java Runtime 1.6.0

相關用法


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