我有一个从JSON文件填充的HashMap。键值对中的值可以是两种不同的类型 - 字符串或其他键值对。
例如:
HashMap<String,Object> hashMap = new Map();
JSON文件看起来像这样:
"custom": {
"mappedReference": {"source": "someMappedReference"},
"somethingElse": "some literal"
}
}
稍后在填充hashMap之后,当我迭代时,我需要检查该值是否为HashMap或String类型。我尝试了很多方法,但似乎无法在Map中获取对象的类型。
for(Map.Entry<String,Object> m : hashMap.entrySet())
{
final String key = m.getKey();
final Object value = m.getValue();
if(value instanceof Map<String,String>)
{
//get key and value of the inner key-value pair...
}
else
{
//it's just a string and do what I need with a String.
}
}
有关如何从地图获取数据类型的任何想法?提前致谢
答案 0 :(得分:1)
您可以使用如下
ParameterizedType pt = (ParameterizedType)Generic.class.getDeclaredField("map").getGenericType();
for(Type type : pt.getActualTypeArguments()) {
System.out.println(type.toString());
答案 1 :(得分:1)
我发布了一个类似问题的答案:https://stackoverflow.com/a/42236388/7563898
这是:
通常不必要地使用Object类型。但是根据您的情况,您可能必须拥有HashMap,尽管最好避免使用。也就是说,如果你必须使用一个,这里有一小段代码,可能会有所帮助。它使用instanceof。
Map<String, Object> map = new HashMap<String, Object>();
for (Map.Entry<String, Object> e : map.entrySet()) {
if (e.getValue() instanceof Integer) {
// Do Integer things
} else if (e.getValue() instanceof String) {
// Do String things
} else if (e.getValue() instanceof Long) {
// Do Long things
} else {
// Do other thing, probably want error or print statement
}
}