Java - Rome: I am trying to parse RSS feed but get a error on some channels
问题 I am trying to work with rss and parse it. I found the Rome and I am trying to work with it by code: 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(),