最近我开始使用 Jsoup 并找到了这个示例代码。因为我是新手,所以我不知道这是如何找到网站上的所有链接的。谁能解释一下 for 循环中发生了什么?大多数情况下,我以前从未使用过这种 for 循环语法,所以对我来说有点困惑。我不确定循环包含什么。谢谢!
Elements links = doc.select("a[href]");
for (Element link : links) {
// get the value from href attribute
System.out.println("\nlink : " + link.attr("href"));
System.out.println("text : " + link.text());
}