XML Parser in android

332 Views Asked by At

I need to know what is the best way to parsing XML file in android, I know there is 3 parser (XMLPullParser, Dom Parser and Sax parser) so whats the different between it and if there any code to do that.

2

There are 2 best solutions below

0
On BEST ANSWER

Sax Parser : Simple API of XML Parse node to node, using top-down traversing, parse without storing xml, Faster compared to Dom Manipulating of node like insertion or deletion is allowed. Needs SAXParserFactory

Dom Parser : Document Object Model Stores entire xml in memory before processing, traverse in any direction, Manipulating of node like insertion or deletion is NOT allowed. Needs DocumentBuilderFactory

Pull Parser: It provides more control and speed from the above two.

0
On

Android training recommends XMLPullParser.

http://developer.android.com/training/basics/network-ops/xml.html

We recommend XmlPullParser, which is an efficient and maintainable way to parse XML on Android.

They also give some code examples.