[android-developers] parsing an XML document

2011-08-17 Thread bob
What is the most reasonable way to parse an XML document on Android? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] parsing an XML document

2011-08-17 Thread Appaholics
You can use the SAX Parser or DOM parser. I chose SAX because I had used it previously. I think there is one more but I am forgetting it. On Wed, Aug 17, 2011 at 10:42 PM, bob b...@coolgroups.com wrote: What is the most reasonable way to parse an XML document on Android? -- You received this

Re: [android-developers] parsing an XML document

2011-08-17 Thread Mark Murphy
There is the XmlPullParser. Performance-wise, it is comparable to SAX, so all else being equal, I'd choose SAX since it is more standard. But, if the XmlPullParser API makes your heart sing, feel free to use it. On Wed, Aug 17, 2011 at 1:17 PM, Appaholics raghavs...@appaholics.in wrote: You can

Re: [android-developers] parsing an XML document

2011-08-17 Thread rich friedel
SAXParser is the best for me http://developer.android.com/reference/javax/xml/parsers/SAXParser.html -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from