views:

49

answers:

2

Hi, I need clear idea on Xml-Parsing in android

+2  A: 

You parse XML on Android just like you would do it in regular Java. You have both org.w3c.dom and org.xml.sax packages available in Android. Use the one that best fits your needs, there are plenty of tutorials for both of them available on the Internet.

Felix
A: 

You can check out this post...

They would have nicely discussed all 3 kinds of parsers available in Android along with code samples

http://www.ibm.com/developerworks/opensource/library/x-android/index.html

Rahul