如何将ResponseEntity
转换为JSONObject
。
我尝试创建一个JSONObject
并将ResponseEntity body
传递给JSON
JSONObject jsonObj = new JSONObject(responseEntity.getBody().toString());
,但出现如下错误。
org.json.JSONException: JSONObject["resultSet"] not found.
at org.json.JSONObject.get(JSONObject.java:224)