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

常见的json解析实例,以map为例:

Map<String,String> map=new HashMap<String,String>();
map.put("code","0");
map.put("message","ok");
String json=JSON.toJSONString(map);
System.out.println(json);
String code=JSONObject.fromObject(json).getString("code");
String message=JSONObject.fromObject(json).getString("message");
System.out.println("code="+code+",message"+message);

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));

posted on 2014-12-03 19:41  一天不进步,就是退步  阅读(37997)  评论(0编辑  收藏  举报