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.

link|improve this question
I couldn't even get JSoup to handle rss feeds. It gives me 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
feedback

1 Answer

JSoup is a HTML parser, in HTML the link element is defined to have an empty content model. The url you gave seems to contain valid xml, so why don't you try an actual xml parser or a feed parser library like rome?

Edit: To extract links from the file using JDK's Xpath implementation you can use code like the following:

XPathFactory xpf = XPathFactory.newInstance();
XPath xp = xpf.newXPath();
InputSource is = new InputSource("http://rss.cbc.ca/lineup/topstories.xml");
NodeList nodes = (NodeList)xp.evaluate("//link", is, XPathConstants.NODESET);
for (int i=0, len=nodes.getLength(); i<len; i++) {
    Node node = nodes.item(i);
    String link = node.getTextContent();
    System.out.println(link);
}
link|improve this answer
so does that mean that I can not capture random tags with doc.select("myRandomTagName"); ? – SYLARRR Nov 23 '11 at 18:09
On HTML files you usually can, on arbitrary files that use elements with different semantics from HTML it seems you can't. See my edit for an alternative solution. – Jörn Horstmann Nov 23 '11 at 21:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.