On Mon, Jan 9, 2012 at 8:33 AM, venu gopal reddy <[email protected]> wrote: > Hi friends, > > I am getting one XML file from one web services cal , i stored this > XML file into my sd card , > > Now Just I want to read the XML file(I mean parsing) . > > Using SAX parser we can read already knew format of XML file ..
Huh? > Here this case i Dont know the format.. > > How can I read Dynamically generated XML files? Use SAX. Or, use the DOM. Or, use XmlPullParser. All of those are integrated into Android, and the first two are the same as with any Java development. Or, use a third-party XML parser, if you can find one that works on Android. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- 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

