80337960 2020-02-22
当我们用 fastjson 如下 API 转成 List<T> 这种类型时,会遇到类型丢失的问题
com.alibaba.fastjson.JSON#parseObject(java.lang.String, java.lang.Class<T>)
String testJSON = "[{\"type\":\"a\"},{\"type\":\"b\"}]"; List<Button> buttons = JSON.parseObject(testJSON, new TypeReference<ArrayList<Button>>() {});
或者还有一种更通用的转换方式
List<Button> buttons = JSON.parseArray(testJSON, Button.class);
同理,这种同样可以解决 Map 的问题
String testMapJSON = "{\"1\":{\"type\":\"a\"},\"2\":{\"type\":\"b\"}}"; Map<String, Button> buttonMap = JSON.parseObject(testMapJSON, new TypeReference<HashMap<String, Button>>() {});