Reputation: 1538
I am trying to implement a robust RSS/Atom reader for android, and since Xerces won't compile I am struggling to find an alternative. I am using org.xmlpull.v1.sax2.Driver(), however this just wraps a DOM parser with SAX callbacks.
Is there anything comparable to Xerces on Android?
Upvotes: 0
Views: 2009
Reputation: 126455
other options are:
Android Sax Parser http://developer.android.com/reference/android/sax/package-summary.html
or use the Simple annotation based XML library
Upvotes: 0
Reputation: 48567
Why not use the built in parser org.xml.sax
http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html
Upvotes: 3