读取配置文件工具demo
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取配置文件工具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; } }
以上是关于读取配置文件工具demo的主要内容,如果未能解决你的问题,请参考以下文章
[vscode]--HTML代码片段(基础版,reactvuejquery)
c#读取xml文件配置文件Winform及WebForm-Demo具体解释