【发布时间】: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();
}
【问题讨论】:
标签: java httpclient http-post http-get