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

JSON和list之间的转换

时间:2017-04-23 14:26:55      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:jar   key   ber   gson   object   stp   keyword   UI   tostring   

谷歌的Gson.jar:

//list转换为json
Gson gson = new Gson();  
List<Person> persons = new ArrayList<Person>();  
String str = gson.toJson(persons);  
//json转换为list
Gson gson = new Gson();  
List<Person> persons = gson.fromJson(str, new TypeToken<List<Person>>(){}.getType());  

 

阿里的fastJson.jar:

//list转换为json
List<CustPhone> list = new ArrayList<CustPhone>();
String str=JSON.toJSON(list).toString();
//json转换为list
  List<Person> list = new ArrayList<Person>();  
        list = JSONObject.parseArray(jasonArray, Person.class); 

JSON和list之间的转换

标签:jar   key   ber   gson   object   stp   keyword   UI   tostring   

原文地址:http://www.cnblogs.com/yw-ah/p/6752375.html

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