我正在尝试使用 RSS 并对其进行解析。我找到了罗马,我正在尝试通过代码使用它:
private SyndFeed parseFeed(String url) throws IllegalArgumentException, FeedException, IOException {
return new SyndFeedInput().build(new XmlReader(new URL(url)));
}
public Boolean processRSSContent(String url) {
try {
SyndFeed theFeed = this.parseFeed(url);
SyndEntry entry = theFeed.getEntries().get(0);
ZonedDateTime entryUtcDate = ZonedDateTime.ofInstant(entry.getPublishedDate().toInstant(), ZoneOffset.UTC);
String entryTitle = entry.getTitle();
String entryText = entry.getDescription().getValue();
}
catch (ParsingFeedException e) {
e.printStackTrace();
return false;
}
catch (FeedException e) {
e.printStackTrace();
return false;
}
catch (IOException e) {
e.printStackTrace();
return false;
}
}
在http://feeds.bbci.co.uk/news/world/rss.xml等某些频道上,一切正常,但在http://habrahabr.ru/rss/等其他频道上,我收到错误消息:
Invalid XML: Error on line 5: The element type "meta" must be terminated by the matching end-tag "</meta>".
com.rometools.rome.io.ParsingFeedException: Invalid XML: Error on line 5: The element type "meta" must be terminated by the matching end-tag "</meta>".
我看了看这个链接后面的内容,XML 真的很奇怪。但它是一个受欢迎的网站,我在其他一些网站上遇到了这个错误,所以我不认为 XML 有问题。我做错了什么?如何阅读这个 RSS 频道?