我在搜索乐队和专辑前后试图获取谷歌一侧歌曲的所有链接: https://www.google.com/search?q=disturbed+asylum&ie=utf-8&oe=utf-8
所以我自己尝试了很多。我用过:
File input = new File("/tmp/input.html");
Document doc = Jsoup.parse(input, "UTF-8", "http://example.com/");
Elements links = doc.select("a[href]");
然后打印出所有链接,但它没有以这种方式获得链接。然后我尝试获取html代码,然后通过那里搜索表,但由于某种原因它没有拉表。有人有什么建议吗?