我正在编写一个程序,该程序可以访问网页,查找并下载所有图像和常见文档(.docx .pdf 等),然后访问页面上的每个链接并执行相同操作。我遇到的问题是,当我深入解析链接时,jsoup 出现 400 个错误:
Exception in thread "main" org.jsoup.HttpStatusException: HTTP error fetching URL. Status=400, URL=http://www.somerandomurl.com
代码:
Document doc = Jsoup.connect(urlstring).userAgent("Chrome").get();
帮助?