我正在尝试使用Jsoup库解析网页。但由于它的地址就像主机和端口一样(http://host:port
)(Stackoverflow不允许编写确切的东西)Jsoup抛出异常并且不解析页面。
以下是页面地址:
这是异常日志:
org.jsoup.HttpStatusException: HTTP error fetching URL. Status=-1, URL=http://sunucu2.radyolarburada.com:5000/
at org.jsoup.helper.HttpConnection$Response.execute(HttpConnection.java:435)
at org.jsoup.helper.HttpConnection$Response.execute(HttpConnection.java:410)
at org.jsoup.helper.HttpConnection.execute(HttpConnection.java:164)
at org.jsoup.helper.HttpConnection.get(HttpConnection.java:153)
at Tester.getSong(Tester.java:136)
at Tester.main(Tester.java:150)
答案 0 :(得分:2)
在userAgent
请求
Jsoup
Document document = Jsoup.connect("http://sunucu2.radyolarburada.com:5000/")
.userAgent("Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36")
.timeout(0).followRedirects(true).execute().parse();
System.out.println(document.html());