美文网首页开源库
OkHttp请求数据回调的时候,response.body.st

OkHttp请求数据回调的时候,response.body.st

作者: 毕丙伟 | 来源:发表于2017-10-30 11:15 被阅读0次

    当时用OkHttp请求数据,得到json数据但是当时用response.body().toString()将得到的是com.squareup.okhttp.Call$RealResponseBody@41c16aa8;而当你使用string也就是response.body().string()会得到正确的json数据。
    在stackoverflow上查到的解释是:

    1. .toString(): This returns your object in string format.(以字符串的格式返回你的对象)
    2. .string(): This returns your response。(返回你的response)
      更加详细的解释就只有看源码了。
      参考:https://stackoverflow.com/questions/28300359/cant-get-okhttps-response-body-tostring-to-return-a-string

    相关文章

      网友评论

        本文标题:OkHttp请求数据回调的时候,response.body.st

        本文链接:https://www.haomeiwen.com/subject/hfdppxtx.html