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

原文地址为: FastJson解析对象及对象数组--项目经验

第一次使用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));


转载请注明本文地址: FastJson解析对象及对象数组--项目经验

猜你喜欢

转载自blog.csdn.net/a13036139941/article/details/81710801