DefaultHttpClient httpclient = new DefaultHttpClient();
    HttpRequestRetryHandler myRetryHandler = new HttpRequestRetryHandler() {
    public boolean retryRequest(IOException exception,
    int executionCount,HttpContext context) {
    if (executionCount >= 5) {
    // 如果超过最大重试次数,那么就不要继续了
    return false;
    }
    if (exception instanceof NoHttpResponseException) {
    // 如果服务器丢掉了连接,那么就重试
    return true;
    }
    if (exception instanceof SSLHandshakeException) {
    // 不要重试SSL握手异常
    return false;
    }
    HttpRequest request = (HttpRequest) context.getAttribute(
    ExecutionContext.HTTP_REQUEST);
    boolean idempotent = !(request instanceof HttpEntityEnclosingRequest);
    if (idempotent) {
    // 如果请求被认为是幂等的,那么就重试
    return true;
    }
    return false;
    }
    };
    httpclient.setHttpRequestRetryHandler(myRetryHandler);复制代码
但是Android中尽管提供了“HttpRequestRetryHandler接口”但是杯具的是没有setHttpRequestRetryHandler这个方法!!后来想到使用类似于    getParams().setParameter(HttpMethodParams.RETRY_HANDLER, new DefaultHttpMethodRetryHandler());复制代码
的方法可有一个杯具了因为没有提供“HttpMethodParams类”