Java(Jsoup):如何解析http://host:port.



我正在尝试用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)

Jsoup请求中包含userAgent

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());

最新更新