当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java System getProperty()用法及代码示例


Java System 类的 getProperty(String key,Stringdef) 方法返回由指定键指示的系统属性。

用法

public static String getProperty(String key,String def)

参数

key- 系统属性的名称。

def- 默认值。

返回

如果该键没有属性,则此方法返回系统属性或默认值。

异常

  1. 如果 key 为 null,则抛出 NullPointerException。
  2. 如果 key 为空,则抛出 aIllegarArgumentException。
  3. 如果安全管理器存在并且其 CheckProperty 方法不允许访问指定的系统属性,则会引发 SecurityException。

例子1

import java.util.Properties;
public class SystemGetPropertyExample1{
	public static void main(String[] args) {
		//here we created property with my name and assigned its default value ShubhamJadon		
		System.out.println("my name:"+System.getProperty("myname", "Shubham Jadon"));
	}
}

输出:

my name:Shubham Jadon

例子2

public class SystemGetPropertyExample2 {
	public static void main(String[] args) {
		//here we created property with my name and didn't assigned its default value		
		System.out.println("my name:"+System.getProperty("myname"));
	}
}

输出:

my name:null



相关用法


注:本文由纯净天空筛选整理自 Java System getProperty() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。