使用属性文件中的条目填充哈希映射

2022-09-01 19:48:53

我想使用该类填充 。
我想加载文件中的条目,然后将其复制到 .HashMapProperties.propetiesHashMap

以前,我过去只是初始化属性文件,但现在我已经定义了,并且只想在构造函数中初始化它。HashMapHashMap

早期方法:

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


答案 1

如果我理解正确,属性中的每个值都是一个表示整数的字符串。所以代码看起来像这样:

for (String key : properties.stringPropertyNames()) {
    String value = properties.getProperty(key);
    mymap.put(key, Integer.valueOf(value));
}

答案 2

.entrySet()

for (Entry<Object, Object> entry : properties.entrySet()) {
    map.put((String) entry.getKey(), (String) entry.getValue());
}