I'm trying to grab a list of links to articles from this feed:
http://rss.cbc.ca/lineup/topstories.xml
However, when Jsoup reads it in, the links in the tags <link>http://www.cbc.ca/news/?cmp=rss</link> become <link />http://www.cbc.ca/news/?cmp=rss
Ie the tag self closes and if I do
Elements items = doc.select("link");
it doesn't grab any of the links.
Unhandled content type application/rss+xml; charset=iso-8859-1. The org.w3c.dom and org.xml.sax parsers work fine though. – styfle Mar 24 at 20:51