我需要parse
上所有site上的商品交易URL。
当我尝试时:
public class example {
public static void main(String[] args) throws IOException {
Document doc = Jsoup.connect("https://flashdeals.aliexpress.com/en.htm?").get();
String title = doc.title();
Elements links = doc.select("a[href]");
for (Element link : links) {
System.out.println(link.attr("href"));
}
}
}
代码找到了所有没有项目链接的链接,但是当我尝试下面的代码时,它什么都不做。
public class example {
public static void main(String[] args) throws IOException {
Document doc = Jsoup.connect("https://flashdeals.aliexpress.com/en.htm?").get();
String title = doc.title();
Elements links = doc.select("div.deals-item-list a[href]");
for (Element link : links) {
System.out.println(link.attr("href"));
}
}
}
我只想输入商品网址,请帮忙。