vaali 0 Newbie Poster

HI,
I want to write a rss parser which parses the rss feeds so that I can extract the descrition part and the date and title of the feeds.

I tried using the rss parser program

RssParser parser = RssParserFactory.createDefault();
Rss rss = parser.parse(new URL("http://rss.ireport.com/feeds/oncnn.rss"));
rss.getChildren();
Channel c=rss.getChannel();

but I have no clue what to do next Can anyone help me on this.

Thanks.