码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-01-23 18:14:36      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:img   one   exception   exce   res   data   convert   请求   json   

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

技术图片
出现这个错误的原因是因为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

标签:img   one   exception   exce   res   data   convert   请求   json   

原文地址:https://www.cnblogs.com/dearnotes/p/12230891.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!