java后台读取配置文件中key与value -----demo

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java后台读取配置文件中key与value -----demo相关的知识,希望对你有一定的参考价值。

技术分享

技术分享

public class ResourcesUtils {
	/*
	 * @description:根据属性获取文件名
	 * 
	 * @param:propertyName文件的属性名
	 * 
	 * @return:返回文件的属性值
	 * */
	public static String getByName( String propertyName) {
		String resultM = "";//返回结果
		
		ResourceBundle bundle = ResourceBundle.getBundle("config");//获取config的熟悉
		
		if (bundle.containsKey(propertyName)){//包含属性的key就返回相应的值
			resultM = bundle.getString(propertyName);//设置返回值
		}
		
		return resultM;
	}
	
	/*
	 * @description:根据属性获取文件名
	 * 
	 * @param:propertyName文件的属性名
	 * 
	 * @return:返回文件的属性值
	 * */
	public static String getByName( String propertyName, String propertyFile) {
		String resultM = "";//返回结果
		
		ResourceBundle bundle = ResourceBundle.getBundle(propertyFile);//获取config的熟悉
		
		if (bundle.containsKey(propertyName)){//包含属性的key就返回相应的值
			resultM = bundle.getString(propertyName);//设置返回值
		}
		
		return resultM;
	}
	
	
}

  

 技术分享

配置文件中的内容:

技术分享

 

以上是关于java后台读取配置文件中key与value -----demo的主要内容,如果未能解决你的问题,请参考以下文章

java properties读取第一对key-value

java 读取配置文件

Flask配置文件和环境变量:配置文件和环境变量的读取与调用

Java读取properties文件(非泛滥)

Java读取ini配置

java学习-加载.properties工具类