getProperty(String key, String def) 使用详解

阅读更多

 

getProperty(String key) 获取指定键指示的系统属性(从系统环境或*.properties等配置文件中读取key对应的值)。

getProperty(String key, String def) 获取用指定键描述的系统属性(从系统环境或*.properties等配置文件中读取key对应的值,当key值为NULL时,返回def的值;当key值不为NULL时,返回key的值)。

其JDK源码如下:

 1.public static String getProperty(String key, String def) {

checkKey(key);

SecurityManager sm = getSecurityManager();

        if (sm != null) {

   sm.checkPropertyAccess(key);

}

 

return props.getProperty(key, def);

    }

 

2.

//当getProperty(key);为null时,返回defaultValue(即使传入的def值)

public String getProperty(String key, String defaultValue) {

String val = getProperty(key);

return (val == null) ? defaultValue : val;

    }

 

例:

  private String encoding = "GBK";

  public JavaModel(Map environment)

  {

    super(environment);

    //mod.encoding为system.properties配置文件中设置的键值对

    this.encoding = System.getProperty("mod.encoding", this.encoding);

 

 

你可能感兴趣的:(key,String,def),使用详解)