fastjson的json字符串转List
pom依赖
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.62</version>
</dependency>
json字符串转List:JSONObject.paresArray(str,class)
- 转为List< Poet >
- 第1个参数为 需要转换的json字符串
- 第2个参数为 Poet.class (Poet是自定义的实体类)
List<Poet> poetList = JSONObject.parseArray(jsonString, Poet.class);//转换
- 转为List< HashMap >
- 第1个参数为 需要转换的json字符串
- 第2个参数为 HashMap.class
List<HashMap> poetList = JSONObject.parseArray(string, HashMap.class);
- 转为其他类型,同理可得