位置:首页 > Java技术 > java.lang > java.lang.System.getProperty(String key)方法实例

java.lang.System.getProperty(String key)方法实例

java.lang.System.getProperty(String key) 方法获取指定键指示的系统属性。

声明

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

public static String getProperty(String key)

参数

  • key -- 此是该系统属性的名称。

返回值

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

异常

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

  • NullPointerException -- 如果key是null。

  • IllegalArgumentException -- 如果key是空的。

例子

下面的例子显示java.lang.System.getProperty()方法的使用。

package com.yiibai;

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 FilesJavajdk1.6.0_06in
Windows XP
1.6.0_06-b02