Mina Wissa
Mina Wissa

Reputation: 10971

3rd party Android XML parser?

Would you please tell me about any good third party xml parsing library that can be used in Android

thanks

Upvotes: 0

Views: 597

Answers (2)

Sai
Sai

Reputation: 703

You can use SAX or JDOM. I believe SAX is a bit faster than JDOM. You can find more information about SAX on Wikipedia: http://en.wikipedia.org/wiki/Simple_API_for_XML

Also, here's a link to SAX on Android and class references from android.com: http://developer.android.com/reference/android/sax/package-summary.html

Upvotes: 1

Cristian
Cristian

Reputation: 200130

Simple XML is just WONDERFUL. You can use SAX or DOM which come in the official SDK, but compared to SimpleXML they are too complex (again: compared to Simple XML).

Upvotes: 1

Related Questions