3

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

线程“主”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();


}
4

1 回答 1

2

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

这应该有效:

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

然后,您可以执行 GET。

于 2011-01-15T14:07:59.360 回答