fastjson 处理json字符串嵌套结构

前端之家收集整理的这篇文章主要介绍了fastjson 处理json字符串嵌套结构前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

String res = "{\"status\": \"success\",\"content\": {\"token\": \"xxxxxxxxxxxxxxxxxxxxxx\",\"user_id\": \"13612345678\"},\"code\": 200,\"msg\": \"\"}";


JSONObject json = JSONObject.parSEObject(res);
String str = (String)json.get("status");

//使用toString的方法避免了构建对象解析或者是map的办法

String content = json.get("content").toString(); JSONObject json2 = JSONObject.parSEObject(content); String userId = (String)json2.get("user_id"); 原文链接:https://www.f2er.com/json/289250.html

猜你在找的Json相关文章