org.json.JSONException: Value okhttp3.internal.http.RealResponseBody@da68fa1 of type java.lang.String cannot be converted to JSONObject

okhttp请求数据然后由json解析数据,在日志warn中发现:

org.json.JSONException: Value okhttp3.internal.http.RealResponseBody@da68fa1 of type java.lang.String cannot be converted to JSONObject_第1张图片
出现这个错误的原因是因为json解析出错。
首先我确认我解析的代码无错误,找到源头才发现是返回的json数据有问题。

ResponseBody data=response.body();
String json=data.toString();
processData(json);

上面的data.toString应该改为data.string()。
原因:

data.toString返回的是json对象,data.string()返回的才是json数据。

上图:
data.toString返回数据

data.string()返回数据

org.json.JSONException: Value okhttp3.internal.http.RealResponseBody@da68fa1 of type java.lang.String cannot be converted to JSONObject_第2张图片

你可能感兴趣的:(org.json.JSONException: Value okhttp3.internal.http.RealResponseBody@da68fa1 of type java.lang.String cannot be converted to JSONObject)