我尝试使用此代码,但是它不起作用。
我正在尝试创建类似以下代码的代码,但是我做不到。
我想将此代码的返回值分配给MainActivity中的String值。
public class Client {
OkHttpClient client = new OkHttpClient();
public String getHttpBody(String url) throws IOException {
Request request = new Request.Builder().url(url).build();
Call call = client.newCall(request);
Response response = call.execute();
return response.body().string();
}
}