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

iphone - How do I make a UIPickerView in a UIActionSheet -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -