我有Object类型的Map,我需要将这个地图转换为String类型。
Map<String, String> map = new HashMap<String, String>();
Properties properties = new Properties();
properties.load(instream);
可以告诉我,如何将属性分配到上面的地图?
谢谢&amp;问候, Msnaidu
答案 0 :(得分:3)
Map<String, String> properties2Map(Properties p) {
Map<String, String> map = new HashMap<String, String>();
for(Map.Entry<Object, Object> entry : p.entrySet()) {
String key = (String) entry.getKey(); //not really unsafe, since you just loaded the properties
map.put(key, p.getProperty(key));
}
return map;
}
我也喜欢使用带有类型参数的实用程序方法来绕过泛型类型的不变性并进行一些“向下转换”或“向上转换”(当我知道它是安全的时)。在这种情况下:
@SuppressWarnings("unchecked")
<A, B extends A> Map<B, B> downCastMap(Map<A,A> map) {
return (Map<B, B>)map;
}
然后你可以写
Properties p = ...
Map<String, String> map = downCastMap(p);
答案 1 :(得分:3)
将属性添加到地图的最简洁方法是(从您的示例开始):
for (String propName : properties.stringPropertyNames()) {
map.put(propName, properties.getProperty(propName));
}
这在这种特殊情况下很有效,因为Properties
对象实际上是一个包含字符串键和值的映射,因为getProperty
方法很明确。由于可靠的向后兼容性原因,它仅被声明为Map<Object, Object>
。
通过使用特定于属性的方法,而不是将其视为Map<Object, Object>
,您可以使用完美的类型安全性填充Map<String, String>
(而不是必须强制转换)。
答案 2 :(得分:3)
您可以直接转换:
Properties properties = new Properties();
Map<String, String> map = new HashMap<String, String>((Map)properties);
答案 3 :(得分:1)
因为我们知道属性是一个String-to-String映射,所以使用rawtype和unchecked转换来保存它。只需发表评论:
Properties properties = new Properties();
properties.load(instream);
@SuppressWarnings({ "rawtypes", "unchecked" })
// this is save because Properties have a String to String mapping
Map<String, String> map = new HashMap(properties);
答案 4 :(得分:1)
使用Java 8并添加Streams,我建议您使用API Steam提供
这里,我们假设每个值实际上都是String对象,转换为String应该是安全的:
Map<String,Object> map = new HashMap<>();
Map<String,String> stringifiedMapSafe = map.entrySet().stream()
.collect(Collectors.toMap(Map.Entry::getKey, e -> (String)e.getValue()));
现在,如果我们不确定所有元素都是String
,我们想要使用null
过滤键/值:
Map<String,Object> map = new HashMap<>();
Map<String,String> stringifiedMapNotSafe = map.entrySet().stream()
.filter(m -> m.getKey() != null && m.getValue() !=null)
.collect(Collectors.toMap(Map.Entry::getKey, e -> (String)e.getValue()));
答案 5 :(得分:0)
Map<String,String> getPropInMap(Properties prop){
Map<String, String> myMap = new HashMap<String, String>();
for (Object key : prop .keySet()) {
myMap.put(key.toString(), prop .get(key).toString());
}
return myMap;
}
答案 6 :(得分:0)
迭代Map对象,取k v,使它们成为字符串并将其放入Map String。
Map<Object,Object> map1; // with object k,v
Map<String, String> mapString = new HashMap<String, String>();
for (Object key : map1.keySet()) {
String k = key.toString();
String v = mmap1.get(key).toString();
mapString.put(k, v);
}