如何在版本3.1中关闭commons-httpclient连接

问题描述

请提出一种关闭httpclient连接的方法,它会导致服务器中生成挂起的线程。 org.apache.commons.httpclient.HttpClient

HttpClientManager httpClientManager;
HttpClient httpclient = httpClientManager.getHttpClient();
PostMethod p = new PostMethod(url);

 try{
  httpclient.executeMethod(p);
} 
catch(HttpException e){}
finally{
 httpclient.close(); //not available in HttpClient
}

使用jar的旧3.1版本,其中HttpClient类中没有方法来关闭httpclient连接。 由于连接最终没有关闭,因此导致服务器中的线程挂起。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...