从ThreadSafeClientConnManager连接池取消/中止连接

时间:2009-10-14 10:03:43

标签: java android thread-safety connection-pooling httpclient

我正在使用ThreadSafeClientConnManager来管理客户端连接池,因为我的应用程序有多个线程,它们同时连接到网络服务器。

摘要示例代码:

HttpClient httpClient;
ClientConnectionManager conMgr = new ThreadSafeClientConnManager(parameters,schReg);
httpclient = new DefaultHttpClient(conMgr, parameters);

现在让我们说这个线程正在下载一个大文件,但是我的应用程序的用户正在切换到另一个活动/屏幕。因此该文件是不必要的,我想中止这个下载连接。

ThreadSafeClientConnManager我找到了这个方法:

public ClientConnectionRequest requestConnection (HttpRoute route, Object state) 返回一个新的ClientConnectionRequest,从中可以获取ManagedClientConnection或请求可以中止

到目前为止,我一直在使用:

HttpGet httpRequest = new HttpGet(URL_TO_FILE);
HttpResponse response = (HttpResponse) httpclient.execute(httpRequest);
[...]

根据我的理解,我要使用:

httpclient.getConnectionManager().requestConnection(HttpRoute route, Object state);

这就是我陷入困境的地步。我假设对于路线,我可以使用new HttpRoute(new HttpHost("10.0.0.1"))或我的服务器,但是为Object state添加什么?

其次,只要我ClientConnectionManager,我就可以致电getConnection(long timeout, TimeUnit tunit)。但是从那里开始,我如何执行HttpGet httpRequest = new HttpGet(URL_TO_FILE);,就像我之前使用HttpResponse response = (HttpResponse) httpclient.execute(httpRequest);一样?

我已经阅读了文档并尝试了很多不同的东西,但我无法获得有效的解决方案。因此,欢迎任何建议和/或代码示例。

1 个答案:

答案 0 :(得分:3)

您只需致电httpRequest.abort()即可关闭连接。

对于大文件,您必须循环处理数据。你可以检查取消状态并从那里中止,

    HttpEntity entity = response.getEntity();
    if (entity != null) {
        InputStream instream = entity.getContent();
        while (instream.read(buf) >= 0) {
            if (cancelled)
               httpRequest.abort();
            // Process the file
        }
     }

使用pooling或keepalive时,中止的连接无法返回到池中,必须将其关闭。旧版本中存在一个错误,即连接保持活动状态并且它会混淆下一个请求。我认为这一切都是固定的。