Quantcast
Channel: Using ROME to extract feed contents? - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Using ROME to extract feed contents?

$
0
0

How do I get the contents as a String using ROME in Java for some feed.

At the moment this is what I got

String feedURL = “...”;
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(feedUrl));

System.out.println(feed);

for (final Iterator iter = feed.getModules().iterator(); iter.hasNext();){
    System.out.println("\t" + ((Module)iter.next()).getUri());
}

System.out.println("Titles of the " + feed.getEntries().size() + " entries:");
for (final Iterator iter = feed.getEntries().iterator(); iter.hasNext();){
     System.out.println("\t" + ((SyndEntry)iter.next()).getContents());
}

Then the output of this is:

SyndContentImpl.interface=interface com.sun.syndication.feed.synd.SyndContent
SyndContentImpl.type=html
SyndContentImpl.mode=null

    SyndContentImpl.value=          <p><a href="http://www.flickr.com/people/64539367@N07/">MiscDot</a> posted a photo:</p>

<p><a href="http://www.flickr.com/photos/64539367@N07/5954881384/" title="03a"><img src="http://farm7.static.flickr.com/6024/5954881384_5390838321_m.jpg" width="240" height="240" alt="03a" /></a></p>

But what I want is to just get the string of the contents: SyndContentsImpl.value


Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles



Latest Images