[android-beginners] Re: XML Parser example problems

2010-04-08 Thread MartinM
OK, got SAX working nicely thanks. All I need to do now is work out how to loop for multiple tags the same, e.g. all the 'name's startoffile namebob/name namejim/name namejon/name namefrank/name /startoffile as I'm only getting bob. The code I'm using : URL url;

[android-beginners] Re: XML Parser example problems

2010-04-07 Thread Tereno
Not sure if this applies but does the Eclipse contain Java EE? On Apr 7, 9:20 am, MartinM martinandj...@gmail.com wrote: Hi, I need to create a simple app. to retrieve some XML, parse and display it. I'm using Eclipse Galileo on WinXP. I've

Re: [android-beginners] Re: XML Parser example problems

2010-04-07 Thread Carmen Delessio
You may want to look at using SAX parser. This article compares SAX speed to other parsers on Android: http://www.developer.com/xml/article.php/3824221/Android-XML-Parser-Performance.htm This article gives a full example:

[android-beginners] Re: XML Parser error

2009-10-21 Thread Chaiyasit T
hi let's try my example : http://www.codemobiles.com/forum/viewtopic.php?t=69 On Wed, Oct 21, 2009 at 4:30 PM, GreenRiver thong.dom...@gmail.com wrote: I get error java.lang.UnsupportedOperation Exception occurred invoking method. when i complied this code line below: xr.parse(new

[android-beginners] Re: XML Parser error

2009-10-21 Thread GreenRiver
thanks :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to

[android-beginners] Re: XML Parser

2009-07-20 Thread Dave Bordoley
XML Pull Parser is great. See http://developer.android.com/reference/org/xmlpull/v1/package-summary.html. Gives you the streaming benefits of SAX but is much easier to work with imo. Dave On Mon, Jul 20, 2009 at 11:32 AM, Victor Pantojavictor.pant...@gmail.com wrote: Hi I'm using SAX for