0
我是使用jsoup和html的新手。我想知道如何從Google新聞首頁的故事中提取標題和鏈接(如果可能的話)。這裏是我的代碼:Java - 如何使用Jsoup提取Google新聞標題和鏈接?
org.jsoup.nodes.Document doc = null;
try {
doc = (org.jsoup.nodes.Document) Jsoup.connect("https://news.google.com/").get();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Elements titles = doc.select("titletext");
System.out.println("Titles: " + titles.text());
//non existent
for (org.jsoup.nodes.Element e: titles) {
System.out.println("Title: " + e.text());
System.out.println("Link: " + e.attr("href"));
}
出於某種原因,我認爲我的計劃是無法找到titletext
,因爲這是在輸出時的代碼運行:Titles:
我將非常感謝您的幫助,謝謝。
嘗試doc.select(「span.titletext」); – tonakai
是否有理由不使用更容易解析[RSS提要](https://news.google.com/news?output=rss)? –