Tagged Questions
1
vote
2answers
139 views
RFC-822 date-time format in RSS 2.0 feeds: CET not accepted?
[Updated with working solution]
I have an RSS feed which gets displayed correctly in RSS clients, but when being validated by http://feedvalidator.org I get this error:
pubDate must be an RFC-822 ...
0
votes
0answers
21 views
Is there anyway to get the RSS feed using particular key area “Sports” , “Oil” , “Politics” etc?
I want to get the RSS feed in the particular area like [Sports" , "Oil" , "Politics" etc] and have to load into my database.
Like,
Today morning I get a feed from TimesNow.com about Sports news - ...
-3
votes
0answers
83 views
How to make a rss feed using google app engine (java) [closed]
For our first assignment in college, we need to create a rss feed which gathers news feeds and live scores of other rss feeds. This should be able to be stored in the database. Also be able to update ...
0
votes
1answer
47 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
44 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
59 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
18 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
227 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
442 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
95 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
228 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
163 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 ...
11
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
49 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
74 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
54 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 ...
1
vote
1answer
117 views
Java Sax Parser only returning one line of a tag
I am trying to parse the description tag in the xml but it only outputs one line:
description: <img ...
1
vote
2answers
653 views
how to save RSS to xml file java
I want to save an RSS feed to an xml document on my computer. I'm using XPath with Java to parse the XML myself, so all I want is a file that contains the source (XML) I see when I view the source of ...
-1
votes
1answer
87 views
Generate XML file from RSS URL in Java [closed]
Given a rss URL, I am trying to generate XML file out of using Java.
I am inserting this XML file in our database. The database column type is CLOB.
Can someone point me to the working sample?
82
votes
16answers
72k views
Simple RSS parser for Android
I am trying to create my first Android application and I'm not all that experienced with Java development. In short, the application needs to do the following:
On click, fetch a RSS feed online
...
0
votes
1answer
86 views
DOM4j doesn't work on Android
I try to use DOM4j to phase a XML RSS feed on Android. I do add the dom4j.jar to lib\ and the user permission.
<uses-permission android:name="android.permission.INTERNET"/>
I also compile ...
0
votes
1answer
75 views
Rome RSS does not parse enclosures
I try to create a rss Feed with Rome which has enclosures (for a podcast). So I create an entry with
SyndEntry entry = new SyndEntryImpl();
After I set the basic information of the entry (like ...
0
votes
0answers
100 views
how to get the whole news from a rss feed?
I'm trying to parse an XML(ISO-8859-1)in eclipse. I already get the title,author,pubdate elements. I just need to open the whole story in a new layout when the rss title is clicked.
I already got the ...
1
vote
1answer
94 views
Read YouTube comment feed using Java
I am want to read and display top 200 comments on a video on youtube. Basically when I go to the link: http://gdata.youtube.com/feeds/api/videos/EokUNzGJBI8/comments I get all the comments in rss feed ...
0
votes
1answer
101 views
Generate GS1 databar expand Barcode in Java?
I wan't to generate a Barcode which is type of GS1 databar expanded. I'm searched in google and didn't found realy working results. I discover that ZXing gives the possibility to generate different ...
0
votes
0answers
135 views
Android RSS Parser not working because of <![CDATA[
I'm trying to make an Android app that parses a RSS feed and outputs it in a listactivity. You can take a look to the RSS file at the link in the codebox :
...
0
votes
1answer
86 views
TitlePageIndicator can not be resolved to a type in android
Hi i have to develop android BBc news reader application from BBC news reader application
Here i have to import these app from above link and run the app means i get the following error.how can i ...
3
votes
1answer
216 views
Is there an official MRSS xsd?
I am trying to validate mrss feeds against an official mrss xsd, maybe from yahoo, but couldn't find one. I have been using one from http://yarfraw.sourceforge.net/xsd/extension/mrss.xsd but I am not ...