I am working on a project in Android now that involves parsing XML from a local file.
I have done XML work extensiely in flex and have become used to the power and flexibility of E4X and it's capabilities. I wonder now if I can do something similar in android or will I be forced to parse the XML manually?
Thanks
Quoting @Andreas_D:
And, since Android does not have JAXB, you don't have that, either.
You have your choice of DOM, SAX, and the
XmlPullParser
, plus any third-party Java libraries you can find that have been ported to Android and fit whatever size constraints you may have.