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

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -