ResourceBundle 读取properties 配置文件
原创
©著作权归作者所有:来自51CTO博客作者mb636514f3a19f5的原创作品,请联系作者获取转载授权,否则将追究法律责任
读取写入 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;