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


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



描述

這個java.lang.System.getProperty(String key) 方法獲取指定的係統屬性key

聲明

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

public static String getProperty(String key)

參數

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

返回值

此方法返回係統屬性的字符串值,如果沒有該鍵的屬性,則返回 null。

異常

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

  • NullPointerException- 如果鍵為空。

  • IllegalArgumentException- 如果鍵為空。

示例

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

package com.tutorialspoint;

import java.lang.*;

public class SystemDemo {

   public static void main(String[] args) {

      // prints the name of the system property
      System.out.println(System.getProperty("user.dir"));

      // prints the name of the Operating System
      System.out.println(System.getProperty("os.name"));

      // prints Java Runtime Version
      System.out.println(System.getProperty("java.runtime.version" ));
   }
}

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

C:\Program Files\Java\jdk1.6.0_06\bin
Windows XP
1.6.0_06-b02

相關用法


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