欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ResourceBundle 读取properties 配置文件

程序员文章站 2022-04-25 13:33:53
...
读取写入 map中

HashMap map = new HashMap();
ResourceBundle bundle = ResourceBundle.getBundle(resourceFileName);
java.util.Enumeration enums = bundle.getKeys();
while (enums.hasMoreElements()) {
String key = (String) enums.nextElement();
String value = bundle.getString(key);
map.put(key, value);
}
return map;
相关标签: properties