📅  最后修改于: 2022-03-11 14:57:32.190000             🧑  作者: Mango
@Override
public void onResponse(@NotNull Call call, @NotNull Response response) throws IOException {
if (response.isSuccessful()) {
String myResponse = response.peekBody(99999L).string();
Log.i("string", myResponse);
}
}