I use library rome.dev.java.net to fetch RSS. Code is
URL feedUrl = new URL("http://planet.rubyonrails.ru/xml/rss"); SyndFeedInput input = new SyndFeedInput(); SyndFeed feed = input.build(new XmlReader(feedUrl));
I have a list of URLs which has to be processed and the result should be only the RSS Feed URLS in that list. How to identify whether the given link is ...
i am writing an rss parser is there is any way to find the given url is rss or atom...using java