Java System getProperty()方法
java.lang.System.getProperty(String key) 方法获取指定键指示的系统属性。
1 语法
public static String getProperty(String key)
2 参数
key : 此是该系统属性的名称。
3 返回值
此方法返回系统属性的字符串值,如果没有与此键的属性则返回null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java System getProperty()方法
*/
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
热门文章
优秀文章