我想解析这个website 我认为Jsoup会帮助我。我希望所有文章分开,所以我尝试:
public static void main(String[] args) throws Exception {
try {
Document doc = Jsoup.connect("http://www.boerse-go.de/jandaya/#!Ticker/Feed/?n=TopNews").get();
Elements ereignisse = doc.select("div#TickerFeed div.articles div.item article.cf");
for (Element e : ereignisse) {
System.out.println(e.text());
}
} catch (IOException e) {
e.printStackTrace();
}
}
但是没有输出......
怎么了?
答案 0 :(得分:0)
你快到了!您没有看到任何输出的原因是您选择的元素没有任何文字内容。
尝试更换:
System.out.println(e.text());
使用:
System.out.println(e.html());
看看我的意思。