通过key获取properties配置文件的value

 

 

public class LoadPropertiesByCode {
	
	/**
	 * 通过key获取properties配置文件的value
	 * @param code
	 * @return value
	 */
	public static String getTextByCode(String code){
		
		ResourceBundle bundle = ResourceBundle.getBundle("constants");
		
		return bundle.getString(code);
		
	}
	
}

 

 

constants.properties

com.curiousby.isdebug=1

 

代码使用

LoadPropertiesByCode.getTextByCode("com.curiousby.isdebug")

 

结果:

 1

 

 

 

你可能感兴趣的:(获取,配置,文件,value,roperties)