如何取消从AsyncTask调用的HTTP GET请求?

时间:2013-01-14 14:15:29

标签: android http android-asynctask

我正在使用静态Web服务类来调用HTTP GET请求,并且希望能够在用户按下后退按钮时取消请求/ AsyncTask。

我在doInBackground中定期检查isCancelled(),它适用于所有其他操作,但如果在用户回击时发生HTTP请求,则在收到结果或超时之前,任务不会被取消。

由于对WebServices.getDeviceId()的静态调用,我在HTTP客户端上没有句柄,所以我不能使用httpclient.getConnectionManager()。shutdown();停止连接有人对我如何解决这个问题有任何想法吗?

@Override
    protected Void doInBackground(Void... params) {
        if((mInstance.getDeviceId() == null) && !isCancelled()) {
            String deviceId = WebServices.getDeviceId();
        }

        return null;
    }

2 个答案:

答案 0 :(得分:7)

如果要中断http请求,则需要对其进行引用并调用yourHttpRequest.abort()

在WebServices类中,你不能添加像abortHttpRequest()这样的方法并添加对当前HttpRequest的引用吗?

您可能需要管理http请求队列并中止正确的请求。

答案 1 :(得分:1)

这是来自SDK:

 Cancelling a task

A task can be cancelled at any time by invoking cancel(boolean). 
Invoking this method will cause subsequent calls to isCancelled() 
to return true. 
After invoking this method, onCancelled(Object), instead of 
onPostExecute(Object) will be invoked after doInBackground(Object[]) returns. 
To ensure that a task is cancelled as quickly as possible, 
you should always check the return value of isCancelled() periodically from 
doInBackground(Object[]), if possible (inside a loop for instance.)

然后

if (isCancelled()) 
     break;
else
{
   // do your work here
}

this就是答案