John
John

Reputation: 1538

Android SAX parser

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

Answers (2)

Falmarri
Falmarri

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

Related Questions