我收到400個錯誤,試圖連接到一個網站。如何在Java中找出400個Http錯誤的細節?
如何設置連接以顯示服務器拒絕我的原因?
try {
doc = Jsoup.connect(URL).timeout(10 * 30000).get();
} catch (IOException ioe) {
System.out.println("Error:" + ioe);
}
http://jsoup.org/apidocs/org/jsoup/Connection.html
顯示您的代碼,說明您如何呼叫,您的用戶界面是什麼以及您打算如何顯示此信息。 –
重複/雙後http://stackoverflow.com/questions/6885076/400-http-errors-using-jsoup-in-multithreaded-program –
你可能想檢查apache http commons: http://hc.apache .org/httpcomponents-client-ga/index.html – SiN