且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

致命异常:OkHttp分派器

更新时间:2023-09-18 21:28:52

Response主体只能使用一次. 你两次做到

Response body can be consumed only once. You make it twice

Log.v(TAG, response.body().string());
String jsonData = response.body().string();

文档