使用fastJson把json字符串转换成list集合

时间:2021-06-29 15:24:45   收藏:0   阅读:0

javabean对象   User user = new User();    (user对象两个属性 name:"张三",age:"李四")
通过前端传递过来的json字符串(只有一个user对象的list集合的字符串)   userJson = [{name:"张三",age:"李四"}]

import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
ArrayList<User> userList  = JSON.parseObject(userJson, new TypeReference<ArrayList<User>>(){});

  

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!