码迷,mamicode.com
首页 > 编程语言 > 详细

FastJson解析对象及对象数组--项目经验

时间:2014-12-03 21:00:23      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:style   ar   color   使用   sp   java   on   bs   as   

第一次使用json,解析工具为FastJson,使用语言为java

1. Json解析出字符串

 String  rootnode = JSONObject.fromObject(jsonData).from("attribute");

 String childnode= JSONObject.fromObject(rootnode).from("attribute");

 以此类推

 

2. Json解析出单个对象

    JSON.parseObject(jsonString,user.class);

 

3.Json解析出多个对象

  List<user> list=new ArrayList<user>(JSONArray.parseArray(jsonString,user.class));

FastJson解析对象及对象数组--项目经验

标签:style   ar   color   使用   sp   java   on   bs   as   

原文地址:http://www.cnblogs.com/davidwang456/p/4141056.html

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