POST 后使用 HttpClient 执行 GET 时出现异常

Posted

技术标签:

【中文标题】POST 后使用 HttpClient 执行 GET 时出现异常【英文标题】:Exception when using HttpClient to execute GET after POST 【发布时间】:2011-01-15 13:59:27 【问题描述】:

我使用 Apache 的 DefaultHttpClient()execute(HttpPost post) 方法来创建一个 http POST。 有了这个我登录到一个网站。 然后我想用同一个客户端制作一个HttpGet。 但是当我这样做时,我得到一个例外:

线程“main”java.lang.IllegalStateException 中的异常:SingleClientConnManager 的使用无效:连接仍然分配。

我不确定为什么会发生这种情况。任何帮助将不胜感激。

public static void main(String[] args) throws Exception 

    // prepare post method
    HttpPost post = new HttpPost("http://epaper02.niedersachsen.com/epaper/index_GT_neu.html");

    // add parameters to the post method
    List <NameValuePair> parameters = new ArrayList <NameValuePair>();
    parameters.add(new BasicNameValuePair("username", "test"));
    parameters.add(new BasicNameValuePair("passwort", "test")); 

    UrlEncodedFormEntity sendentity = new UrlEncodedFormEntity(parameters, HTTP.UTF_8);
    post.setEntity(sendentity); 

    // create the client and execute the post method
    HttpClient client = new DefaultHttpClient();
    HttpResponse postResponse = client.execute(post);
    //Use same client to make GET (This is where exception occurs)
    HttpGet httpget = new HttpGet(PDF_URL);
    HttpContext context = new BasicHttpContext();

    HttpResponse getResponse = client.execute(httpget, context);



    // retrieve the output and display it in console
    System.out.print(convertInputStreamToString(postResponse.getEntity().getContent()));
    client.getConnectionManager().shutdown();



【问题讨论】:

见:***.com/questions/4612573/… 【参考方案1】:

这是因为在 POST 之后,连接管理器仍在保持 POST 响应连接。您需要先发布它,然后才能将客户端用于其他用途。

这应该可行:

HttpResponse postResponse = client.execute(post);
EntityUtils.consume(postResponse.getEntity();

然后,您可以执行 GET。

【讨论】:

非常感谢!为 Exception 做到了!

以上是关于POST 后使用 HttpClient 执行 GET 时出现异常的主要内容,如果未能解决你的问题,请参考以下文章

java 实现HTTP连接(HTTPClient)

在 Angular 7 中,为啥即使只订阅一次 HttpClient.post 也会执行两次?

HttpClient使用post方法提交数据后服务端如何获得这些参数

Android下通过HttpClient执行 HTTP POST 请求 的代码

Android 项目使用 httpclient --> http.client (apache), post/get 方法

使用 HttpClient 和 C# 在 post 请求中发送 json