Tagged Questions
0
votes
1answer
23 views
How do you store and manipulate retrieved information from an RSS Feed in Java?
Well I've run into another problem with RSSParsing.
Here's what I've done so far.
I've successfully accessed the data from the RSSFeed I want.
I've stored the information within it without a problem ...
0
votes
1answer
28 views
Xml parsing using Jsoup
I'm using Jsoup to parse xml, I have to grab links from an RSS feed such as this http://feeds.guardian.co.uk/theguardian/rss , I just need advise on how to go about this in Java, I know how to parse a ...
1
vote
0answers
54 views
how can Rss Location Based Feed be implemented
After more than 10 Hours of searching the web, I am not able to find a single piece of information that shows me how to implement RSS feeds based on location. Also, how can I implement Location and ...
0
votes
0answers
15 views
Accessing enclosure content with Rome
I am trying to access the .mp3 link in a podcast enclosure using Rome1.0 and Java. The enclosure contains the type, url and length. I can't find any documentation for it. The wiki at Java.net has ...
0
votes
0answers
186 views
Valid RSS 2.0 Using Rome
Im using rome 1.0 to generate RSS for my java application.
In my java:
SyndFeed feed = new SyndFeedImpl();
feed.setFeedType( "rss_2.0" );
feed.setTitle( "My Site" );
feed.setLink( ...
0
votes
3answers
349 views
java.lang.ClassNotFoundException: org.jdom.JDOMException
I am getting the following error message when trying to load an rss page:
Feb 16, 2013 9:08:44 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet ...
2
votes
5answers
2k views
Simple Xml - Element Declared Twice Error
I have been trying to wrap a set of classes based on Simple XML (Java Serializer) around a RSS Feed. The sample feed is
<?xml version="1.0" encoding="UTF-8"?>
<rss ...
0
votes
0answers
81 views
Put RSS Feed Item into Gridview Categories
RSS Feed XML
<item>
<pubDate>..</pubDate>
<dc:creator></dc:creator>
<category><![CDATA[Cat1]]></category>
<description>..</description>
...
-2
votes
1answer
226 views
merge rss feeds in java [closed]
How do you merge multiple RSS feeds and remove duplicates. Any example would be fine.
3
votes
4answers
157 views
RSS Feed description returns '<'
I'm trying to parse rss data from this feed: http://fulltextrssfeed.com/feeds.bbci.co.uk/news/rss.xml, which was generated using using the FullTextRssFeed site. The only problem is that when I try to ...
1
vote
3answers
2k views
How do I read RSS from Google App Engine? Getting JDOM could not create a SAX parser
I am trying to write a simple Google App Engine website that reads an external RSS feed. I am using ROME with JDOM, however I am getting the impression that ROME is not compatible with Google App ...
10
votes
2answers
8k views
Where can I download ROME rss library jar?
It seems rome downloads no longer exists here (http://java.net/projects/rome/downloads). Where can I download the jar then? is it being discontinued?
Thanks,
David
0
votes
1answer
42 views
RSS Reader isn't getting some tags
This is a continue question from my previous question here :RSS Reader NullPointerException
In my app,in my list, sometimes i don't get the title of the RSS,and sometimes the description( and the ...
0
votes
1answer
67 views
RSS Reader NullPointerException
I have create an RSS Reader as in the following tutorial:
http://techiedreams.com/android-rss-reader-part-3-action-bar-with-animated-item/
My problem is:
when i load the list (with ...
0
votes
0answers
40 views
How To Remove <img>,<br>and <b> Tag While Reading RSS Feed Using ROME?
hi i am trying to read data from weather feed my code is,
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(feedUrl));
System.out.println("Examining rss ...