fastjson获取Json字符串中的数据

前言,开发过程中一般情况我们都是以json的形式来传输数据的

获取Json字符串data中数据

JSONObject jsonObject = JSONObject.parseObject(response);
JSONObject data = jsonObject.getJSONObject("content").getJSONObject("data");

获取Json字符串rows中数据

 JSONObject jsonObject = JSONObject.parseObject(response);
JSONArray jsonArray = (JSONArray) ((JSONObject) jsonObject.get("content")).get("rows");
 List> result = JSONArray.parseObject(jsonArray.toJSONString(), List.class);

 还有一种就是用Java类去接收。

你可能感兴趣的:(fastjson获取Json字符串中的数据)