java – 使用属性文件中的条目填充HashMap

前端之家收集整理的这篇文章主要介绍了java – 使用属性文件中的条目填充HashMap前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用Properties类填充HashMap.我想加载.propeties文件中的条目,然后将其复制到HashMap中.

此前,我曾经使用属性文件初始化HashMap,但是现在我已经定义了HashMap,并希望仅在构造函数中初始化它.

早期方法

@H_301_6@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);

但现在,我有这个

@H_301_6@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?

解决方法

如果我理解正确,属性中的每个值都是一个代表整数的String.所以代码如下所示: @H_301_6@for (String key : properties.stringPropertyNames()) { String value = properties.getProperty(key); mymap.put(key,Integer.valueOf(value)); }
原文链接:https://www.f2er.com/java/126119.html

猜你在找的Java相关文章