Hello all,
I have created an RSS object and I would now like to parse out the descriptions of the children. My knowledge of RSS is extremely limited so pardon me if I am incorrect in explaining what I need. For example, I am connecting to http://rss.cnn.com/rss/cnn_topstories.rss and I would like to parse the information below the article title and date into a string. Does anyone have any ideas? Thanks!
Here is what I have
RssParser parser = RssParserFactory.createDefault();
Rss rss = parser.parse(new URL("http://rss.cnn.com/rss/cnn_topstories.rss"));
Channel channel = rss.getChannel();