我有一个从第三方网站下载信息的AsyncTask。这个网站不受我的控制。
问题是,有时我在2秒内得到这个信息,但有时可能需要30-40秒。
我知道问题出在网站本身,因为我在浏览器的桌面上也遇到了同样的问题。
我正在寻找一种方法来取消操作,如果它需要的时间超过一定的数量,并再次尝试。
下面是我当前的代码:
protected ArrayList<Card> doInBackground(Void... voids)
{
Looper.prepare();
publishProgress("Preparing");
SomeClass someClass = new SomeClass(this);
return someClass.downloadInformation();
}
您可以尝试为您的Http请求设置超时和套接字连接。如何在Java中为Android设置HttpResponse超时要知道如何设置它们
并使用HttpRequestRetryHandler启用自定义异常恢复机制。
From http://hc.apache.org: "默认情况下,HttpClient尝试从I/O异常中自动恢复。默认的自动恢复机制仅限于少数已知安全的异常。
- HttpClient将不会尝试从任何逻辑或HTTP协议错误中恢复(这些错误来自HttpException类)。
- HttpClient将自动重试那些被认为是幂等的方法。
- HttpClient将自动重试那些传输异常失败的方法,而HTTP请求仍在传输到目标服务器(即请求尚未完全传输到服务器)。
的例子:
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpRequestRetryHandler myRetryHandler = new HttpRequestRetryHandler() {
public boolean retryRequest(
IOException exception,
int executionCount,
HttpContext context) {
if (executionCount >= 5) {
// Do not retry if over max retry count
return false;
}
if (exception instanceof InterruptedIOException) {
// Timeout
return false;
}
if (exception instanceof UnknownHostException) {
// Unknown host
return false;
}
if (exception instanceof SocketTimeoutException) {
//return true to retry
return true;
}
if (exception instanceof ConnectException) {
// Connection refused
return false;
}
if (exception instanceof SSLException) {
// SSL handshake exception
return false;
}
HttpRequest request = (HttpRequest) context.getAttribute(
ExecutionContext.HTTP_REQUEST);
boolean idempotent = !(request instanceof HttpEntityEnclosingRequest);
if (idempotent) {
// Retry if the request is considered idempotent
return true;
}
return false;
}
};
httpclient.setHttpRequestRetryHandler(myRetryHandler);
请看这个链接:网址:http://hc.apache.org/httpcomponents-client-ga/tutorial/html/fundamentals.html#d4e292