> I was wondering about the availability of good tutorials on Java XML DOM > though. >
This shouldn't be your concern, there is a vast amount of literature (in the form of references, tutorials, etc...) on both XML, and DOM, Android also has an XmlPullParser that you might want to look into, I'm sure there are a fully sufficient number of tutorials on that as well. In general your choices in android are these three: dom, sax, and xmlpullparser, plus whatever off the shelf parser you want to grab. The stigma with dom is that there's a large runtime overhead. Even if it's *small enough* you shouldn't use it (dom) just because it's slightly easier to learn, but there might be appropriate reasons for it depending on what you need... Kris -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

