我没有找到任何关于如何取代弃用方法的例子。 Okhttp3主页上的示例已经过时了。 这是其中之一:
public static final MediaType JSON = MediaType.get("application/json; charset=utf-8");
OkHttpClient client = new OkHttpClient();
String post(String url, String json) throws IOException {
RequestBody body = RequestBody.create(JSON, json);
Request request = new Request.Builder()
.url(url)
.post(body)
.build();
try (Response response = client.newCall(request).execute()) {
return response.body().string();
}
}
如果有人能解决这个问题,我会很感激你的帮助。
更新: 我使用的是‘ com.squareup.okhttp3: okhttp: 4.0.1’