Retrofit callback get response body

前端 未结 9 1214
星月不相逢
星月不相逢 2020-12-05 04:05

I am testing Retrofit to compare it with Volley and I am struggling to get the response from my requests. For example, I do something like this:

RestAdapter          


        
9条回答
  •  既然无缘
    2020-12-05 04:49

    Before Retrofit 2.0

       String bodyString = new String(((TypedByteArray) response.getBody()).getBytes());
    

    Retrofit 2.0

     String  bodyString = new String(response.body().bytes());
    

提交回复
热议问题