2012-10-03 75 views

回答

0

如果您的servlet是在HTTP POST中調用的,那麼您可以對另一個servlet執行HTTP 307 redirect,它將調用它的doPost。如果你想從一個servlet(或任何Java方法)發佈到不同的頁面,您可以綴以東西POST像HttpClient這樣的:

PostMethod post = new PostMethod("http://jakarata.apache.org/"); 
NameValuePair[] data = { 
    new NameValuePair("user", "joe"), 
    new NameValuePair("password", "bloggs") 
}; 
post.setRequestBody(data); 
// execute method and handle any error responses. 
... 
InputStream in = post.getResponseBodyAsStream(); 
相關問題