Android Okhttp异步调用
问题内容:
我正在尝试使用Okhttp库通过API将我的Android应用程序连接到服务器。
单击按钮就会发生我的API调用,并且我收到以下 android.os.NetworkOnMainThreadException
。我了解这是由于我正在尝试在主线程上进行网络调用,但是我也正努力在Android上寻找一种干净的解决方案,以使该代码如何使用另一个线程(异步调用)。
@Override
public void onClick(View v) {
switch (v.getId()){
//if login button is clicked
case R.id.btLogin:
try {
String getResponse = doGetRequest("http://myurl/api/");
} catch (IOException e) {
e.printStackTrace();
}
break;
}
}
String doGetRequest(String url) throws IOException{
Request request = new Request.Builder()
.url(url)
.build();
Response response = client.newCall(request).execute();
return response.body().string();
}
上面是我的代码,并且在行上抛出了异常
Response response = client.newCall(request).execute();
我还读到Okhhtp支持Async请求,但是我真的找不到适用于Android的干净解决方案,因为大多数人似乎都在使用使用 AsyncTask
<>
的新类?
问题答案:
要发送异步请求,请使用以下命令:
void doGetRequest(String url) throws IOException{
Request request = new Request.Builder()
.url(url)
.build();
client.newCall(request)
.enqueue(new Callback() {
@Override
public void onFailure(final Call call, IOException e) {
// Error
runOnUiThread(new Runnable() {
@Override
public void run() {
// For the example, you can show an error dialog or a toast
// on the main UI thread
}
});
}
@Override
public void onResponse(Call call, final Response response) throws IOException {
String res = response.body().string();
// Do something with the response
}
});
}
并这样称呼:
case R.id.btLogin:
try {
doGetRequest("http://myurl/api/");
} catch (IOException e) {
e.printStackTrace();
}
break;