0

I was totally confused to pickup the xml parser.Just i want to know which xml parser is the best for parsing xml efficiently in android

NamNH
  • 1,752
  • 1
  • 15
  • 37
user2372490
  • 81
  • 1
  • 6
  • http://stackoverflow.com/questions/15608647/android-best-parser-to-parse-xml-data this link will help you – Anjali Nov 20 '15 at 04:48

2 Answers2

1

The default XML parser provider by android: XmlPullParser is really good to handle your data parsing.

For more: http://developer.android.com/reference/org/xmlpull/v1/XmlPullParser.html

Ajitha
  • 717
  • 1
  • 7
  • 30
0

Jsoup (http://jsoup.org/) also good for XML parser (easy, relatively tiny). The most effectively performance of course is SAX (nearly raw parser), but hard to code and control.