Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
  • Parse it for data
  • Show the data

I've been browsing for guides, tutorials and documentation but the parsers I've found so far only deal with local strings or files or are way too complicated for me to go through at this point.

  1. Can you provide me a link to a good XML parser class (that is included in the Android SDK)
  2. Provide me with an example of its use.
  3. An example of how the feed would get fetched from the Internet (curl? or something internal?)
  4. (Bonus) Tips and hints on how this would be best achieved.

Thanks in advance.

share|improve this question

16 Answers

http://www.ibm.com/developerworks/opensource/library/x-android/index.html

This is a full article on the different ways of parsing rss on the Android platform. It also contains the source code of several rss 2.0 parser implementations.

share|improve this answer

Alternatively, android-rss could be a more lightweight open-source (Apache 2.0) library to read parts of RSS 2.0 feeds. The library uses (Level 1) APIs such as android.net.Uri. The design features stream parsing with SAX. As a result, the memory footprint tends to be smaller compared to an equivalent DOM-based solution.

== API Usage ==

import org.mcsoxford.rss.*;

  RSSReader reader = new RSSReader();
  String uri = "http://feeds.bbci.co.uk/news/world/rss.xml"
  RSSFeed feed = reader.load(uri);
  Log.d(TAG, "Feed: " + feed.toString());
  List<RSSItem> list = feed.getItems();
  for (RSSItem i: list) {
    Log.d(TAG, i.getTitle());
  }
share|improve this answer
This looks really promising. – drozzy Feb 9 '11 at 17:24
the code fails to parse as is – gregm Mar 11 '11 at 18:19
3  
I really just need to remember this link so I am making a comment...thanks for it. – Garet Claborn Nov 9 '11 at 1:26
looks interesting. Exploring this API now for a POC. – Gopinath Nov 23 '11 at 11:53
4  
@GaretClaborn Why not email the page to yourself? – Chloe Aug 8 '12 at 2:19
show 3 more comments

I too am looking for something similar.

So far I've looked at these options:

Informa

From a quick glance this seems very cumbursome and unintuitive. The class names like:

ChannelIF channel = FeedParser.parse(new ChannelBuilder(), inpFile);

give little sense of what they are about and the use of lower case 'L' and upper case 'i' do not give much hope for the quality of rest of the codebase.

What is more of a problem however is a huge number of dependencies that this parser needs, making it highly unlikely that android will run it. At this point I am not going to even try it - and just assume that it won't work.

Rome

This does not work because of some wierd things that don't work on Dalvik here. See problem reports here and here.

Apache Feedparser

Apache Feedparser looks abandoned, as it is in the Dormant category on the Apache page. Furthermore it looks to be absolutely broken, at least for me. I tried to incorporate it into the project - and after importing ALL the dependencies it is borking on the httpclient from apache. It could be that Android does not support some of them.

In any case here is what the code for it looks like (actually looks pretty good):

FeedParser parser = FeedParserFactory.newFeedParser();
URL url = new URL("http://www.blah.com/feeds");
parser.parse( listener, url.OpenStream(), resource );

FeedParserListener listener = new DefaultFeedParserListener() {
        //this gives us the title of the actual feed/site
        public void onChannel( FeedParserState state,
                               String title,
                               String link,
                               String description ) throws FeedParserException {


        }

        //this gives us the individual item
        public void onItem( FeedParserState state,
                            String title,
                            String link,
                            String description,
                            String permalink ) throws FeedParserException {
        }

        //called to set the date on which the entry was created
        public void onCreated( FeedParserState state, Date date ) throws FeedParserException {

        }

    };

onChannel and onItem methods can be found in FeedParserListener doc. onCreated is support for Atom the time for entry created.

If only Java people did things in a more elegant way, like python's universal feed parser.

share|improve this answer
hi dozy .... how can i get download apache feedparser library – Nik Patel Apr 5 '12 at 13:12
I have no idea, but I suspect you can include it as a Maven reference. The group and artifact id's can be found in their svn repo: svn.apache.org/viewvc/commons/dormant/feedparser/trunk/… – drozzy Apr 5 '12 at 15:07

I have implemented a simple Android RSS reader over at my blog http://automateddeveloper.blogspot.com/ which just implements a custom RSS reader with SAX and pulls down required information.

The complete eclipse project is available for download there as a working RSS reader for Android


UPDATE

There still seems like a lot of interested in this stuff - and I have written an updated post on how to do this in Android 3.0+ (also in part as my tribute to Google Reader!) - complete with working application on GitHub - check it out here

share|improve this answer
Looks good. Thanks for sharing. Did you try it with ATOM? – drozzy Aug 25 '10 at 12:58
1  
No, but good point! when I wrote the code, it was done for a specific problem, so I only set up the SAX parser to check for the RSS elements I needed. That said, if you look at the SAX code, it should be easily modified to handle the ATOM schema (handle <entry> like the <item> tag and update the domain Article object (to handle multiple links for example). If i get a chance I may have a look at updating it. – rhinds Aug 31 '10 at 8:48

There's a Google Code project that fixes ROME so that it works on Android. The project is android-rome-feed-reader. If you're curious, it fixes ROME by repackaging ROME and java.beans under com.google.code.rome.android.repackaged.

There is an example project available too so you can try it yourself. I can't post the URL for the demo thanks to stackoverflow not allowing more than one hyperlink...

share|improve this answer
1  
wow, it's a 500k jar! – gregm Mar 11 '11 at 16:41
2  
Performance is shockingly bad.. – Fergal Moran Oct 22 '11 at 16:38

here's a tutorial on this: http://www.helloandroid.com/node/110

share|improve this answer

I have developed a simple RSS library myself, you can find the source at github https://github.com/matshofman/Android-RSS-Reader-Library

share|improve this answer
You have not license attached to your code. Is it free to be modified and re-released? – artifex Dec 5 '11 at 7:43
My mistake, I will be adding it soon. It will be licensed using the Apache License 2.0 – Mats Hofman Dec 5 '11 at 9:15
This is one heck of a library. Thanks for it. It made my day today. :D – Mayu Mayooresan Mar 10 at 10:56

It's fairly easy to setup an implementation of a SAX parser but the hard part is to be able to parse any and every feed under the sun.

You need to cater to all formats RSS 1, RSS 2, Atom etc. Even then you will have to contend with poorly formatted feeds.

I had faced similar problems in the past so decided to do my feed parsing on a server and just get the parsed contents. This allows me to run more complex libraries and parser which I can modify without pushing out updates for my app.

I have the following service running on AppEngine which allows for a much simpler XML / JSON parsing at your end. There is a fixed and simple structure to the response. You can use this for parsing

http://evecal.appspot.com/feedParser

You can send both POST and GET requests with the following parameters.

feedLink : The URL of the RSS feed response : JSON or XML as the response format

Examples:

For a POST request

curl --data-urlencode "feedLink=http://feeds.bbci.co.uk/news/world/rss.xml" --data-urlencode "response=json" http://evecal.appspot.com/feedParser

For GET request

evecal.appspot.com/feedParser?feedLink=http://feeds.nytimes.com/nyt/rss/HomePage&response=xml

My android app "NewsSpeak" uses this too.

share|improve this answer
This post is not helpful - it does not answer for the any asked question. Instead of the answer you provided an advertisement. However, the idea of your webservice is quite cool. :) – bluszcz Apr 30 '12 at 18:54

you can look the sources of android-rss. Maybe a good idea maybe not.

share|improve this answer

I don't think that anything is included into SDK. Check this out http://code.google.com/p/android-feed-reader/ it uses ROME for parsing. ROME has JDOM dependancy

share|improve this answer
ROME does not work - see my answer. – drozzy May 18 '10 at 18:31
public class SitesList {

    /** Variables */
    private ArrayList name = new ArrayList();
    private ArrayList website = new ArrayList();
    private ArrayList category = new ArrayList();


    /** In Setter method default it will return arraylist 
     *  change that to add  */

    public ArrayList getName() {
        return name;
    }

    public void setName(String name) {
        this.name.add(name);
    }... and so on that are your tags names... (getter and setter methods)
public class MyXMLHandler extends DefaultHandler {

    Boolean currentElement = false;
    String currentValue = null;
    public static SitesList sitesList = null;

    public static SitesList getSitesList() {
        return sitesList;
    }

    public static void setSitesList(SitesList sitesList) {
        MyXMLHandler.sitesList = sitesList;
    }


    @Override
    public void startElement(String uri, String localName, String qName,
            Attributes attributes) throws SAXException {

        currentElement = true;

        if (localName.equals("maintag"))
        {
            /** Start */ 
            sitesList = new SitesList();
        } else if (localName.equals("website")) {
            /** Get attribute value */
            String attr = attributes.getValue("category");
            sitesList.setCategory(attr);
        }

    }

    /** Called when tag closing ( ex:- AndroidPeople 
     * --  )*/
    @Override
    public void endElement(String uri, String localName, String qName)
            throws SAXException {

        currentElement = false;

        /** set value */ 
        if (localName.equalsIgnoreCase("name"))
            sitesList.setName(currentValue);
        else if (localName.equalsIgnoreCase("website"))
            sitesList.setWebsite(currentValue);

    }

    /** Called to get tag characters ( ex:- AndroidPeople 
     * -- to get AndroidPeople Character ) */
    @Override
    public void characters(char[] ch, int start, int length)
            throws SAXException {

        if (currentElement) {
            currentValue = new String(ch, start, length);
            currentElement = false;
        }

    }

}
 //if file from local drive i.e app/raw/abc.xml
StringBuffer inLine=new StringBuffer();
            SAXParserFactory spf= SAXParserFactory.newInstance();
            SAXParser sp=spf.newSAXParser();
            XMLReader xr=sp.getXMLReader();
            MyXMLHandler myExampleHandler=new MyXMLHandler();
            xr.setContentHandler(myExampleHandler);
            InputStream in=this.getResources().openRawResource(R.raw.my);
            xr.parse(new InputSource(in));
            MyXMLHandler parsedExampleDataSet=myExampleHandler;
            inLine.append(parsedExampleDataSet.toString());
//          XMLDataSet parsedExampleDataSet = myExampleHandler.
//          
//          inLine.append(parsedExampleDataSet.toString());
            in.close();
/if file from internet
    SAXParserFactory spf = SAXParserFactory.newInstance();
                SAXParser sp = spf.newSAXParser();
                XMLReader xr = sp.getXMLReader();

                /** Send URL to parse XML Tags */
                URL sourceUrl = new URL(
                        "http://www.androidpeople.com/wp-content/uploads/2010/06/example.xml");
    //"E:/Spike/XMLParsing/XMLParsing/assets/test.xml"
                MyXMLHandler myXMLHandler = new MyXMLHandler();
                xr.setContentHandler(myXMLHandler);
                xr.parse(new InputSource(sourceUrl.openStream()));
share|improve this answer

Check out Springsource's Spring Android project: http://www.springsource.org/spring-android

Specifically, documentation for their RSS/Atom support is here: http://static.springsource.org/spring-android/docs/1.0.x/reference/htmlsingle/#d4e51

They are using the Android ROME Feed Reader.

share|improve this answer

I prefer XMLPullParser, it is equivalent of StAX and it is in android documentation.

share|improve this answer

This week I staterd to research about a good example of reader. I try near 10 different examples. The only one that works for me is this. To get it working I add the sourcecode to a new project and changed some libraries and a bit of syntax:

menu.add(... ) // now has one parameter more
Menu.Item -> MenuItem
getId() -> getItemId()
startSubActivity(itemintent,0) -> startActivity(itemintent)
share|improve this answer

I have spent the day researching Android RSS Readers.

I would like to parse a very simple XML file in my app. http://www.sportinglife.com/rss/transfer_wire.xml

There are several solution on this thread. I have tried all of the recommended ones but I keep getting errors in Eclipse when running the code.

I have found a recent IBM Tutorial from April 2012, which explains the code very well and offers a solution in just one class file. http://www.ibm.com/developerworks/xml/library/x-androidxml/index.html

I have followed this tutorial step by step, but Eclipse throws the following error:

[Dex Loader] Unable to execute dex: Unexpected magic: [100, 101, 120, 10, 48, 49, 51, 0]
[FootballTransfers] Conversion to Dalvik format failed: Unable to execute dex: Unexpected magic: [100, 101, 120, 10, 48, 49, 51, 0]

Has anybody encountered this problem before? I have no idea what this error means.

I get the same error when I run the solutions offered in this thread as well.

share|improve this answer

Use this example code to create RSS reader that is actually can handle namespace extensions

https://github.com/dodyg/AndroidRivers/blob/master/src/com/silverkeytech/android_rivers/xml/RssParser.kt

The library underlying this code is this https://github.com/thebuzzmedia/simple-java-xml-parser.

It works very well in Android as well.

share|improve this answer

protected by Community Dec 17 '12 at 16:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.