0
如何提取「閱讀更多」部分的新聞。當我使用jsoup時,它只在「閱讀更多」部分的內容之前提供。我想提取該新聞的全部內容。提取鏈接的子內容
Scanner sc=new Scanner(System.in);
String code=sc.nextLine();
doc = Jsoup.connect("http://ieee-link.org/category/events/" +code+ "/").get();
Elements els = doc.select("div.entry");
System.out.println(els.text());