-3
siDoc = Jsoup.connect("http://www.streetinsider.com").get();
連接到一個網站,它返回
<html>
<head></head>
<body></body>
</html>
siDoc = Jsoup.connect("http://www.streetinsider.com").get();
連接到一個網站,它返回
<html>
<head></head>
<body></body>
</html>
嘗試添加userAgent
。
Document doc = Jsoup.connect("http://www.streetinsider.com").userAgent("Mozilla").get();
請提供完整的'java'代碼 – Dekel
我只是詢問是否jsoup上是.PHP –
是的,它的網頁作品。 jsoup不關心擴展。 – Dekel