标签: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));
标签:style ar color 使用 sp java on bs as
原文地址:http://www.cnblogs.com/davidwang456/p/4141056.html