解決okhttp報java.lang.IllegalStateException: closed,java.lang.IllegalStateException: closed

翻越高山發表於2017-06-08


from :  http://blog.csdn.net/x707669224/article/details/56280270


解決okhttp 報java.lang.IllegalStateException: closed,java.lang.IllegalStateException: closed,原因為OkHttp請求回撥中response.body().string()只能有效呼叫一次

在呼叫了response.body().string()方法之後,response中的流會被關閉,我們需要建立出一個新的response給應用層處理。不多說直接貼程式碼:

       @Override
    public Response intercept(Chain chain) throws IOException
    {
        Request request = chain.request();
        logForRequest(request);
        Response response = chain.proceed(request);
       MediaType mediaType = response.body().contentType();
        String content= response.body().string();
        Log.e("tag", content);
        return response.newBuilder()
                .body(ResponseBody.create(mediaType, string))
                .build();
      // return logForResponse(response);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

相關文章