Invalid use of SingleClientConnManager: connection still allocated

一:Invalid use of SingleClientConnManager: connection still allocated

 此问题出现原因是使用同一个httpclient当前一个post|get请求尚未结束,另条线程又再次使用该httpclient请求数据,则前一个会报出如上错误

 出现原因

 1:post/get没有关闭,没有写post.abort()或者 EntityUtils.consume(entity);

 2:涉及到多线程调用同一个httpclient

    解决方案考虑加同步块

       HttpResponse httpResponse = null;
  synchronized (httpClient) {
   httpResponse = httpClient.execute(post);
   httpResponse.getEntity().consumeContent();

  }
  

    EntityUtils.toString(entity)

二:非法uri问题

      一些asp网站中,常常出现url例如www.baidu.com?q=4ut333  这个url不是合法的uri却是合法的url。

     而httpclient4.1中无论httpget、httppost都是用uri而非url,曾尝试反编译,改源代码,一看工作量实在太大,只好放弃,此问题小弟没有其他方法,只好拿起httpclient3.1


转自:http://blog.csdn.net/lq123456789000/article/details/7072822

你可能感兴趣的:(Invalid use of SingleClientConnManager: connection still allocated)