我有以下代码使用 jsoup 从给定页面中提取 url。
import org.jsoup.Jsoup;
import org.jsoup.helper.Validate;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import java.io.IOException;
/**
* Example program to list links from a URL.
*/
public class ListLinks {
public static void main(String[] args) throws IOException {
String url = "http://shopping.yahoo.com";
print("Fetching %s...", url);
Document doc = Jsoup.connect(url).get();
Elements links = doc.getElementsByTag("a");
print("\nLinks: (%d)", links.size());
for (Element link : links) {
print(" * a: <%s> (%s)", link.absUrl("href") /*link.attr("href")*/, trim(link.text(), 35));
}
}
private static void print(String msg, Object... args) {
System.out.println(String.format(msg, args));
}
private static String trim(String s, int width) {
if (s.length() > width)
return s.substring(0, width-1) + ".";
else
return s;
}
}
我想要做的是构建一个只提取https
站点的爬虫。我给爬虫一个种子链接开始,然后它应该提取所有https
站点,然后获取每个提取的链接并对它们执行相同的操作,直到达到一定数量的收集 URL。
我的问题:上面的代码可以提取给定页面中的所有链接。我需要提取https://
仅以开头的链接,我需要做什么才能实现这一点?