[android-developers] Re: xml parsing error

2012-11-26 Thread bob
Not all Nodes are Elements. Apparently, that node is not an element. On Thursday, November 22, 2012 6:15:36 AM UTC-6, Ananda Krishna wrote: Hi I am trying to parse an xml file.But I am getting an exception. error Message :org.apache.harmony.xml.dom.TextImpl cannot be cast to

[android-developers] Re: xml parsing error

2012-11-22 Thread Piren
I haven't checked your code very throughly (its no fun trying to read xml parsing code) but that error seems to indicate you're trying to cast a value into an xml element. or as the Inception people said: you went too deep :) you should do the same type checking you do in the level above it.

[android-developers] Re: XML Parsing w/ DocumentBuilder

2012-03-30 Thread Bozzified
So I did make it work but feel free to pitch in and tell me if this is efficient or proper way.. I'm getting results fine with this *try* { DocumentBuilderFactory factory = DocumentBuilderFactory.*newInstance*(); DocumentBuilder builder = factory.newDocumentBuilder(); Document doc =

[android-developers] Re: XML Parsing w/ DocumentBuilder

2012-03-30 Thread Bozzified
Btw that's a different xml now but it's the same thing I needed is there a better way to do that maybe? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

[android-developers] Re: XML Parsing Methods

2011-08-10 Thread Shahs
SAX PARSING DOM PARSING On Aug 7, 10:40 pm, Mahesh Thallapally tmcp...@gmail.com wrote: What are the XML Parsing methods. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: XML Parsing Methods

2011-08-10 Thread martypantsROK
http://developer.android.com/reference/javax/xml/parsers/package-summary.html http://developer.android.com/reference/org/xml/sax/package-summary.html http://developer.android.com/reference/org/xmlpull/v1/package-summary.html On Aug 9, 12:29 pm, Shahs sahitya...@gmail.com wrote: SAX PARSING DOM

[android-developers] Re: Xml Parsing

2011-08-01 Thread Marta Rodriguez
Hi, You should use DocumentBuilderFactory, DocumentBuilder and Document classes. Here you have an example. URL url = new URL(http://...;); HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection(); urlConnection.connect(); DocumentBuilderFactory dbf =

[android-developers] Re: Xml Parsing

2011-08-01 Thread nadam
There are at least 3 ways to parse XML in Android. http://www.ibm.com/developerworks/opensource/library/x-android/ I recommend SAX or Pull, since the DOM parsing has given me weird OutOfMemory exceptions even with quite small XML-files. On 1 Aug, 09:29, Hari hariluv...@gmail.com wrote: Plz,

[android-developers] Re: XML Parsing

2011-07-05 Thread Krischik Martin
On 4 Jul., 07:06, Vikash vikash.andr...@gmail.com wrote: Can anybody send XML Parsing eBook or Documents to me. We have made good experience with android.sax: http://developer.android.com/reference/android/sax/package-summary.html It is pre-installed and simple to use. Martin -- You

[android-developers] Re: Xml parsing using SAX parser

2011-05-17 Thread DanH
?xml version=1.0 encoding=UTF-8 standalone=no? is in the wrong place. If present it must be the very first thing in the file. On May 16, 11:07 pm, Mobility Android blore.mobil...@gmail.com wrote: ns:function1Response xmlns:ns=http://ws.apache.org/axis2;         ns:return?xml version=1.0

[android-developers] Re: XML parsing slow ... cache!

2010-08-16 Thread Mark Gjøl
On my first implementation I used a DOM-parser for my XML (Flickr, 500 images), and it easily took about a minute to get through. I now use a SAX-parser, and it's less than a second. The speedup was tremendous, so it can definitely be worth your time, at least to test the difference! -- Mark Gjøl

[android-developers] Re: XML parsing slow ... cache!

2010-08-16 Thread DanH
Comparing DOM and SAX is like comparing apples and bullfrogs. They do two largely different things. DOM reads in an entire XML document and stores it as Java objects so that you can quickly reference parts of it without knowing (or at least having to specify) in advance what parts you're

Re: [android-developers] Re: XML parsing slow ... cache!

2010-08-16 Thread Kostya Vasilyev
David, XML parsing options available in Android were discussed here within the last month. I recall that Dianne Hackborn posted some interesting performance comparisons. Try finding that thread, I think it should be quite interesting w.r.t. to your question. Android also includes the

[android-developers] Re: XML parsing differs on android and on desktop

2010-07-20 Thread Mattias Nilsson
Thanks a lot for your suggenstions, I will look in to them as soon as I'm able :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] Re: XML parsing differs on android and on desktop

2010-07-19 Thread Kumar Bibek
There is a blank catch block in your code. I saw one. Just try to print out the stack in all the catch blocks and see if you get any exceptions. Thanks and Regards, Kumar Bibek http://tech-droid.blogspot.com On Jul 19, 11:17 pm, Frank Weiss fewe...@gmail.com wrote: I've had no problems using

[android-developers] Re: Xml parsing

2010-06-21 Thread Manfred Moser
There is also ksoap2 that you can use to work with SOAP which supports marshalling. Check it out at http://code.google.com/p/ksoap2-android/ or use my patched version if you need attribute support as well. http://www.simpligility.com/2010/05/attribute-support-for-ksoap2-on-android/ Manfred

Re: [android-developers] Re: XML Parsing

2010-02-03 Thread Frank Weiss
Add a boolean variable that is set on segfirstroute startElement and cleared on segfirstroute endElement. Us it to ignore the date element. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: XML Parsing

2010-02-03 Thread Kevin Duffey
If you're using xml pull.. just go until you find the start_tag + the name of the node you need, then exit out of the while loops. On Wed, Feb 3, 2010 at 8:18 AM, Frank Weiss fewe...@gmail.com wrote: Add a boolean variable that is set on segfirstroute startElement and cleared on segfirstroute

RE: [android-developers] Re: XML Parsing

2010-02-03 Thread Tommy
] Re: XML Parsing If you're using xml pull.. just go until you find the start_tag + the name of the node you need, then exit out of the while loops. On Wed, Feb 3, 2010 at 8:18 AM, Frank Weiss fewe...@gmail.com wrote: Add a boolean variable that is set on segfirstroute startElement and cleared

[android-developers] Re: XML Parsing

2010-02-03 Thread Brion Emde
this helps you in some way. From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Kevin Duffey Sent: Wednesday, February 03, 2010 12:36 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] Re: XML Parsing If you're using xml pull

[android-developers] Re: XML Parsing

2010-02-03 Thread Brion Emde
I sent you a program last Friday that showed how to do this. You replied then, saying you would look at my example on Monday and reply to me then. You never did. On Feb 3, 12:02 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, I'm having a XML file like *sample.xml* * * *maintag*

[android-developers] Re: XML Parsing

2010-02-02 Thread Sasikumar S
I'm using SAX Parser to retrieve. On Feb 3, 12:02 pm, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, I'm having a XML file like *sample.xml* * * *maintag* *firstroute* *datejan 25th/date* *segfirstroute* *datemar 6th/date* */segfirstroute* */firstroute* * firstroute  

[android-developers] Re: XML parsing

2009-03-15 Thread nowb
The java-app. that I´m trying to port is not only parsing xml, it´s building up graphics from the xml (the xml is quite similar to xaml) and it uses the DOM to do that. I guess I should have written that in my first message. So I do have to work with the horrible old DOM :) Any suggestions?

[android-developers] Re: XML parsing

2009-03-15 Thread ifuller1
JSON handling is excellent on Android - is there a possiblity you could translate the xml at source to another format? On Mar 15, 5:59 pm, nowb ola.br...@gmail.com wrote: The java-app. that I´m trying to port is not only parsing xml, it´s building up graphics from the xml (the xml is quite

[android-developers] Re: XML parsing

2009-03-15 Thread nowb
I do realize that the heading for this thread is kind of misguiding, it's not actually the xml parsing that is the problem, it's building up the DOM after the parsing (sorry for that). So translating the xml to another format wont help. So to narrow down the problem... I need to know if there

[android-developers] Re: XML parsing

2009-03-15 Thread Tim Bray
On Sun, Mar 15, 2009 at 4:09 AM, nowb ola.br...@gmail.com wrote: I need to know if there is a way to reach the org.apache.harmony.xml.dom package. Or if there are some substitute for ElementImpl that I can use. This works for me: import javax.xml.parsers.DocumentBuilder; import

[android-developers] Re: XML parsing

2009-03-14 Thread Tim Bray
On Sat, Mar 14, 2009 at 4:29 AM, nowb ola.br...@gmail.com wrote: I´m trying to port a java xml-parser to android. Why? Android comes with a perfectly OK XML parser that seems to Just Work, and then there are some android-specific libraries that look pretty slick if you don't want to wrestle

[android-developers] Re: xml parsing

2009-02-28 Thread Tim Bray
but while parsing the xml data i am getting some attribute values like  Español  België (nl) How to get the original values  by avoid these symbols currently i am using ?xml version=1.0 encoding=ISO-8859-1? at the top of the xml file is it correct or i need to do more ??? It depends

[android-developers] Re: XML parsing prob

2008-12-03 Thread Mark Murphy
eyedol wrote: Can't figure out how to achieve this. I was to get the values for the tag thumb it works fine if the thumb tag shows once, but if it increases, I get an exception thrown. Exception java.lang.IndexOutOfBoundsException: Invalid location 1, size is 1 snip The Java code to fetch

[android-developers] Re: XML parsing prob

2008-12-03 Thread Digestor
I guess the problem is in this line: Job job = jobs.get(i); I seems to me (according to your xml sample) that there is only one job. So in the second run of the for-loop the IndexOutOfBoundsException-Exception occurs. Good luck --~--~-~--~~~---~--~~ You

[android-developers] Re: XML parsing prob

2008-12-02 Thread Xavier Mathews
I Believe This Is In The Archives. On 12/02/2008, eyedol [EMAIL PROTECTED] wrote: Can't figure out how to achieve this. I was to get the values for the tag thumb it works fine if the thumb tag shows once, but if it increases, I get an exception thrown. Exception

[android-developers] Re: XML parsing prob

2008-12-02 Thread eyedol
I have dug this list but didn't come across anything similar to mine. Could you point me to a thread? On Dec 3, 5:16 am, Xavier Mathews [EMAIL PROTECTED] wrote: I Believe This Is In The Archives. On 12/02/2008, eyedol [EMAIL PROTECTED] wrote: Can't figure out how to achieve this. I was

[android-developers] Re: XML Parsing Error

2008-10-18 Thread Ludwig
I think you can see from your stack that you do not even get near your XML parsing code.It is my impression that you fail open the Http connection to get the file. This might be because you have not given permission to your app to access the internet. Could you check that you have

[android-developers] Re: XML Parsing Error

2008-10-18 Thread JavaAndroid
Hi Ludwig, Thanks for ur Response.. i added that entry. After adding uses- permission tag in androidmanifest.xml, i was getting UnknownHostException...it was basically due to URL classI replaced everything with HTTPClient classes Here is my modified class and it worked me. import