我想HashMap
使用Properties
该类填充一个。
我想加载.propeties
文件中的条目,然后将其复制到HashMap
.
之前,我只是HashMap
使用属性文件来初始化 ,但现在我已经定义了HashMap
并且只想在构造函数中初始化它。
较早的做法:
Properties properties = new Properties();
try {
properties.load(ClassName.class.getResourceAsStream("resume.properties"));
} catch (Exception e) {
}
HashMap<String, String> mymap= new HashMap<String, String>((Map) properties);
但现在,我有这个
public class ClassName {
HashMap<String,Integer> mymap = new HashMap<String, Integer>();
public ClassName(){
Properties properties = new Properties();
try {
properties.load(ClassName.class.getResourceAsStream("resume.properties"));
} catch (Exception e) {
}
mymap = properties;
//The above line gives error
}
}
如何将属性对象分配给HashMap
此处?