tags:

views:

80

answers:

1

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?

+2  A: 

Why not use the built in parser org.xml.sax

http://www.anddev.org/parsing_xml_from_the_net_-_using_the_saxparser-t353.html

Falmarri
I am using an rss parser that relies on xerxces (and those callbacks)
John
What specifically do you need? Perhaps if you tell us your specific problem or what exactly you need that `org.xml.sax` doesn't do we could help you more.
Falmarri