我有一块Java代码,使用OkHttp进行休息调用。
如何设置对变量的响应,然后在另一个类文件中调用该变量?
这是我到目前为止的代码。我不认为这会奏效。请帮我修复并了解如何正确实施:
public abstract class PullID extends AsyncTask {
String url ="https://exampleEndPoint.com";
String id_needed = " ";
OkHttpClient client = new OkHttpClient();
String doGetRequest(String url) throws IOException {
Request request = new Request.Builder()
.url(url)
.build();
Response response = client.newCall(request).execute();
return response.body().string();
}
public String getPullID() {
return this.PullID;
}
public String setPullID(String current_ID) {
this.PullID = current_ID;
return PullID;
}
}
感谢。
答案 0 :(得分:0)
我最终使用URI Builder来简化这一过程。 它现在对我有用。