我正在編寫一個程序,轉到網頁,找到並下載所有圖像和通用文檔(.docx .pdf等),然後訪問頁面上的每個鏈接,並執行相同的操作。我遇到的問題是,當我深入解析鏈接我得到400錯誤與jsoup: Exception in thread "main" org.jsoup.HttpStatusException: HTTP error fetching URL. Status=400, URL=http://www.somerandomurl.com
Jsoup解析,400錯誤
代碼:
Document doc = Jsoup.connect(urlstring).userAgent("Chrome").get();
幫助?