工程中properties文件处理方法类

Posted 大饼酥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了工程中properties文件处理方法类相关的知识,希望对你有一定的参考价值。

功能:properties文件加载、取得key对应的值

 1 import java.util.ResourceBundle;
 2 
 3 /**
 4  * 工程中properties文件处理方法类
 5  */
 6 public class ConfigHolder {
 7     private static ResourceBundle bundle;
 8     
 9     /**
10      * 加载properties文件
11      */
12     private static void loadConfig() {
13         if(bundle == null) {
14             // 在class下有config.properties文件,如果在某包下,则如:ort.config
15             bundle = ResourceBundle.getBundle("config");
16         }
17     }
18     
19     /**
20      * 取得properties文件中指定key的值
21      * @param key
22      * @return
23      */
24     public static String getValue(String key) {
25         loadConfig();
26         return bundle.getString(key);
27     }    
28 }

 

以上是关于工程中properties文件处理方法类的主要内容,如果未能解决你的问题,请参考以下文章

java web工程中读取properties文件,路径一直不知道怎么写

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

Vue报错:Uncaught TypeError: Cannot assign to read only property 'exports' of object 的解决方法(代码片段

java中获取工程中res目录路径的方法

java怎么properties的方法

使用ResourceBundle 类读取 src 下的 xxx.properties 文件