android - Parse XML string using SAX -
Is there a way to parse XML string using Android SAX?
class MyXmlContentHandler extends the default handler {... // apply SAX callback here}
Then you can use the utility class:
Xml.parse (xmlString, New MyXmlContentHandler ());
Comments
Post a Comment