如何断开HTC(Froyo及以下)手机上的HttpUrlConnection?

时间:2012-08-09 17:34:55

标签: android httpurlconnection android-2.2-froyo disconnect

在某些情况下,我需要断开来自客户端的长轮询http请求。我对服务器的HttpUrlConnection的相关部分如下(以下所有代码都在Thread的run()方法中):

try {
    URL url = new URL(requestURL);

    connection = (HttpURLConnection) url.openConnection();
    connection.setRequestProperty("Accept-Charset", "UTF-8");
    connection.setConnectTimeout(5 * 1000);
    connection.setReadTimeout(60 * 1000);
    connection.setRequestMethod("GET");

    // read the output from the server
    reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    StringBuilder stringBuilder = new StringBuilder();

    String line = null;
    while ((line = reader.readLine()) != null) {
        stringBuilder.append(line + "\n");
    }
    Log.d(TAG, stringBuilder);
} catch (IOException ioe) {
    Log.e(TAG, ioe);
} finally {
    if (reader != null) {
        try {
            reader.close();
        } catch (IOException ioe) {
            ioe.printStackTrace();
        }
    }
}

这是我首先发起的,然后(在第二次延迟后)尝试取消请求:

pollThread = new PollThread();
pollThread.start();
Log.d(TAG, "pollThread started");

new Handler().postDelayed(new Runnable() {
    @Override
    public void run() {
        pollThread.cancelRequest();
        Log.d(TAG, "pollThread presumably cancelled");
    }
}, 1000);

这就是cancelRequest()方法的样子:

public void cancelRequest() {
    if (connection != null) {
        connection.disconnect();
    }
}

基本上,

  1. 我使用get请求启动HttpUrlConnection,读取超时为1分钟
  2. 然后一秒后,我尝试取消之前的请求
  3. 预期的结果是,当我调用connection.disconnect()
  4. 时,连接应抛出IOException

    这正是各种仿真器(2.2 - 4.0.3),摩托罗拉Atrix(2.3.7)和三星Note(4.0.1)上发生的情况。但是在一些运行2.2的HTC设备上,尽管我明确终止了连接,但请求仍会保持活动状态,它会收到响应。我用HTC Desire和HTC Wildfire验证了这一点。

    这里发生了什么?如何在运行2.2 +?

    的所有设备上安全取消此类请求

    为方便起见,如果您想自己试驾,可以在此处获取整个代码:https://gist.github.com/3306225

2 个答案:

答案 0 :(得分:4)

这里发生了什么?

这是早期Android版本(Froyo 2.2)中的已知错误,在排序中,套接字不能被其他线程异步关闭,并且已在Gingerbread 2.3中修复:

Issue 11705: impossible to close HTTP connection using HttpURLConnection

如何在运行2.2 +?

的所有设备上安全取消此类请求

该链接中项目成员的评论:

  

在当前版本中可以使用的最佳近似值是在HTTP连接上设置读取和连接超时。

希望有所帮助。

答案 1 :(得分:0)

实际上,我建议你使用Apache HttpClient lib,而不是android提供的默认值。

您可以从以下网址下载:http://code.google.com/p/httpclientandroidlib/

如果你想“一路走来”,你也可以使用“配置了合理的默认设置和Android注册方案的AndroidHttpClient”,也可以支持cookie。你可以从here下载它(我不记得我什么时候找到原来的......)

这就是你使用“Get”电话的方式,我想你可以弄清楚其余部分:

    InputStream isResponse = null;

    HttpGet httpget = new HttpGet(strUrl);
    HttpResponse response = getHttpClient().execute(httpget);

    HttpEntity entity = response.getEntity();
    isResponse = entity.getContent();
    responseBody = convertStreamToString(isResponse);

    /**
 * @return the mClient
 */
protected AndroidHttpClient getHttpClient() {
    if (mClient == null)
        mClient = AndroidHttpClient.newInstance(mCookieStore);
    return mClient;
}

关闭连接:

getHttpClient().close();