如何在一個HttpURLConnection中使用Java做幾個請求?來自一個HttpURLConnection的幾個請求
URL url = new URL("http://my.com");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
HttpURLConnection.setFollowRedirects(true);
connection.setDoOutput(true);
connection.setRequestMethod("GET");
PrintStream ps = new PrintStream(connection.getOutputStream());
ps.print(params);
ps.close();
connection.connect();
//TODO: do next request with other url, but in same connection
謝謝。
我正要說同樣的事情,關於它並非意味着被重複使用 – 2010-03-16 19:53:24
有+1,那麼!通常我會在我的答案中痛苦很久,以至於每個人都打我。 :) – 2010-03-16 19:54:47
@CarlSmotricz可能是真的,...但在我的情況下,我得到了許多請求,太多沒有任何get/post參數+ 1與get參數,....我只使用簡單的代碼爲httpconnection。 http://stackoverflow.com/questions/23017813/httpurlconnection-lots-of-requests – Bhuro 2016-07-16 10:47:54