码迷,mamicode.com
首页 > Web开发 > 详细

public static <T> Map<String, T> json2map

时间:2015-01-06 17:36:37      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:

/**
* json string convert to map with javaBean
*/
public static <T> Map<String, T> json2map(String jsonStr, Class<T> clazz) throws Exception {
Map<String, Map<String, Object>> map = objectMapper.readValue(jsonStr, new TypeReference<Map<String, T>>() {
});
Map<String, T> result = new HashMap<String, T>();
for (Entry<String, Map<String, Object>> entry : map.entrySet()) {
result.put(entry.getKey(), map2pojo(entry.getValue(), clazz));
}
return result;
}

上面的<T>怎么理解?

必须要有前面的<T>,这样后面的T才能确定是泛型,还是叫T的类

public static <T> Map<String, T> json2map

标签:

原文地址:http://www.cnblogs.com/usual2013blog/p/4203932.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!