本文主要是介绍java httpclient 请求时 Invalid use of SingleClientConnManager: connection still allocated. Make sure,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
错误原因:你的程序打开至少两个连接,而第一次连接后没有关闭post或者get
解决办法:注释的部分就是解决办法
http1 = "http://localhost:8081/sawp/SakAction.do?doMethod=getSortedList1";httpPost = new HttpPost(http1);response = client.execute(httpPost);entity = response.getEntity();// if(entity!=null){
// entity.consumeContent();
// }
这篇关于java httpclient 请求时 Invalid use of SingleClientConnManager: connection still allocated. Make sure的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!