首页 > 技术文章 > new TypeReference 问题

wangsong412 2019-11-04 19:02 原文

Map<Integer, Long> map = new HashMap<>();
map.put(0, 0L);
map.put(1, 1L);

String a = JSON.toJSONString(map);

map = JSON.parseObject(a, Map.class);
Long b = map.get(1);

  

#########
Exception in thread "main" java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Long
json parse时 强制类型转换
#########
Map<Integer, Long> map = new HashMap<>();
map.put(0, 0L);
map.put(1, 1L);

String a = JSON.toJSONString(map);

// 匿名内部类 map = JSON.parseObject(a, new TypeReference<Map<Integer, Long>>(){}); Long b = map.get(1);
#########
OK!
#########

推荐阅读