Re: [android-developers] Xml Parsing

2016-05-20 Thread TreKing
On Mon, May 16, 2016 at 12:26 PM, Pop Daniel wrote: > I'd like to know if anyone knows how to implement an XML parser. i need to > parse an XML file and get it's content. https://developer.android.com/training/basics/network-ops/xml.html

[android-developers] xml parsing error

2012-11-22 Thread Ananda Krishna
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 org.w3c.dom.Element *Code is as follows:* *Xml File:* Which are the right words to greet someone? Hello Hai Bye When do you use the word

Re: [android-developers] Xml parsing help for particular attributes in xml

2012-09-24 Thread TreKing
On Mon, Sep 24, 2012 at 3:52 AM, Swap wrote: > so how could i do that? Google "Android XML parsing" - TreKing - Chicago transit tracking app for

[android-developers] Xml parsing help for particular attributes in xml

2012-09-24 Thread Swap
hey guys , i want help to parse xml file for android. i want to parse particular attributes like url url two image tag but i want to access image size = medium so how could i do that? I tried Document doc = parser.getDomElement(xml); // getting DOM element XPathFactory xPathfactory = XP

[android-developers] XML parsing request error

2012-05-30 Thread Daniel Holst
public static NodeList UpdateSchoolList() throws SAXException, IOException, ParserConfigurationException { return parse_xml(request("https://www.lectio.dk/lectio/ login_list.aspx?forcemobile=1")).getElementsByTagName("a"); }ERROR

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

2012-03-30 Thread Anirudh Loya
Ralph, He needs URL and the title after Parsing. very much doable with XML parsing. On Fri, Mar 30, 2012 at 4:46 PM, Ralph Bergmann | the4thFloor.eu < ra...@the4thfloor.eu> wrote: > I have not tried it but I think the 3rd child of the "item" element is > the "title" element. But you need the tex

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

2012-03-30 Thread Ralph Bergmann | the4thFloor.eu
I have not tried it but I think the 3rd child of the "item" element is the "title" element. But you need the text child from this "title" element. Ralph -- Ralph Bergmann iOS and Android app developer www http://www.the4thFloor.eu | http://www.dasralph.de mail ra..

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

2012-03-30 Thread Anirudh Loya
Use XML with sitelist.. !! It will work fine. No idea about document builder. On Thu, Mar 29, 2012 at 10:34 PM, Bozzified wrote: > Hello everyone. > > I am trying to get a hang of XML parsing and can't get this to show me the > right elements as I'm fairly new to Android/Java dev. Would appreci

[android-developers] XML Parsing w/ DocumentBuilder

2012-03-29 Thread Bozzified
Hello everyone. I am trying to get a hang of XML parsing and can't get this to show me the right elements as I'm fairly new to Android/Java dev. Would appreciate some guidance. I've build a class that gets the custom xml url and needs to parse it and fill ArrayList with values. After trying se

Re: [android-developers] Xml parsing issue

2012-03-12 Thread TreKing
On Sun, Mar 11, 2012 at 10:24 AM, hazem omies wrote: > how i can do this structure This has nothing to do with Android specifically. Regardless, you've posted almost no information that would be useful in helping you. http://catb.org/esr/faqs/smart-questions.html --

[android-developers] Xml parsing issue

2012-03-11 Thread hazem omies
i implement xml parsing from http Request ,,i have a problem with parsing this structure xml as follow: 1 2 . . . . . . 1 2

Re: [android-developers] XML parsing

2011-12-27 Thread TreKing
On Tue, Dec 27, 2011 at 3:26 PM, Hank wrote: > Does anyone have any ideas on how I can find out where that function is > breaking? > This is not really Android-specific ... but ... I have similar code that works, and I don't use setCharacterStream() before parsing the InputSource. Maybe that's i

[android-developers] XML parsing

2011-12-27 Thread Hank
I have this function in my code public final static Document XMLfromString(String xml){ Document doc=null; DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); try {

[android-developers] xml parsing

2011-09-12 Thread Pragya Chordia
i m working on xml parsing using xmlpullparser. m getting a java runtime error : # # A fatal error has been detected by the Java Runtime Environment: # # Internal Error (classFileParser.cpp:3494), pid=5116, tid=4420 # Error: ShouldNotReachHere() # # JRE version: 6.0_26-b03 # Java VM: Java HotSpo

[android-developers] xml parsing

2011-09-12 Thread Pragya Chordia
i m trying xml parsing using xmlpullparser. i m getting a java error Error: # # A fatal error has been detected by the Java Runtime Environment: # # Internal Error (classFileParser.cpp:3494), pid=5024, tid=700 # Error: ShouldNotReachHere() # # JRE version: 6.0_26-b03 # Java VM: Java HotSpot(TM)

Re: [android-developers] XML parsing in android

2011-09-04 Thread Mark Murphy
Use the DOM parser, the SAX parser, the XmlPullParser, or whatever third party parser you want that runs on Android. On Fri, Sep 2, 2011 at 7:00 AM, Krishna Prasad wrote: > Is It possible to parse a dynamically created xml in android? > > I want  to display the xml based on fields in the xml. > >

Re: [android-developers] XML parsing in android

2011-09-04 Thread Satya Komatineni
Krishna, here are research notes I have on XML processing in Android http://www.satyakomatineni.com/item/3731 You may be able to use XmlPullParser facility but you may need to work as you process each node sequentially. If you have the option of JSON the following research link may help http://

[android-developers] XML parsing in android

2011-09-04 Thread Krishna Prasad
Is It possible to parse a dynamically created xml in android? I want to display the xml based on fields in the xml. -- 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 T

Re: [android-developers] XML Parsing Methods

2011-08-08 Thread Mark Murphy
You have your choice of a standard Java DOM, a standard Java SAX, and the XmlPullParser. On Sun, Aug 7, 2011 at 10:40 PM, Mahesh Thallapally wrote: > What are the XML Parsing methods. > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group.

[android-developers] XML Parsing Methods

2011-08-08 Thread Mahesh Thallapally
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@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegr

[android-developers] Xml Parsing

2011-08-01 Thread Hari
Plz, Anyone can please help me with parsing an XML String in Android??? Here is the Xml file which has to be accepted as a string and display the contents of this xml code?? Real Estate Hospitals Gifts Domestic Help Plz help me out.. I'm extremely new to ANdroid development... -- Yo

[android-developers] xml parsing using soap

2011-07-25 Thread Ravindra
Hello, I want to get soap reponse from the url but Now when i am executing my file then in output window(immulator) soap responce is generated like this... anyType{schema=anyType{element=anyType{complexType=anyType{choice=anyType{element=anyType{complexType=anyType{sequence=anyType{el

Re: [android-developers] XML Parsing

2011-07-04 Thread VINOD KUMAR SINGH
Hi can you send me link for developing login-in screen that takes user name and password. It also provided an option for registering. That will store user name and password into db or local. On Mon, Jul 4, 2011 at 3:41 PM, yogeshkumar tiwari < yogeshtiwari2...@gmail.com> wrote: > Hi vikash, >

Re: [android-developers] XML Parsing

2011-07-04 Thread yogeshkumar tiwari
Hi vikash, i'm here sending u the link, from here u get the idea abt parsing. i hope this link is helpful to you. http://www.androidpeople.com/android-xml-parsing-tutorial-using-saxparser -- You received this message because you are subscribed to the Google Groups "Android D

[android-developers] XML Parsing

2011-07-04 Thread Vikash
Can anybody send XML Parsing eBook or Documents to me. Please. -- 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 email to android-de

[android-developers] Xml parsing using SAX parser

2011-05-17 Thread Mobility Android
http://ws.apache.org/axis2";> 1 11 Soap 1 12 Trousers i am getting the below exception ,when i try t

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

2010-08-16 Thread Fabrizio Giudici
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 8/16/10 16:02 , Davide wrote: > Hi, > > I have seen that xml parsing is very slow. Using sax would be better, > but benchmark show that sax work only 30% > faster as dom. Is right? Is faster if I construct a "DOM" using sax? > > To reduce time i li

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

2010-08-16 Thread Davide
Hi, I have seen that xml parsing is very slow. Using sax would be better, but benchmark show that sax work only 30% faster as dom. Is right? Is faster if I construct a "DOM" using sax? To reduce time i like to cache xml file. Caching it as xml is not a good idea because the parsing time is there

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

2010-07-19 Thread Frank Weiss
I've had no problems using the SAX parser on Android. I really think you should fix your characters() override method. Read to API docs. It doesn't have to return the full contents of a text node (I see newbies frequently make this mistake). I always use a StringBuffer or StringBuilder. What help

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

2010-07-19 Thread Mattias Nilsson
Hi I've written a simple class that should create objects from a given XML file. This works fine when I run it on desktop but when I run the exact same code on android it doesn't find anything... It doesn't cast any exceptions but at the end area is still null and boulders an empty list. The prob

Re: [android-developers] XML Parsing Strange Error

2010-06-28 Thread Frank Weiss
I think you have two errors: 1) In the characters() method, you should append the given character span to a StringBuffer or StringBuilder (which you reset for each startElement: @Override public void characters(char[] ch, int offset, int count) { sb.append(ch, offs

[android-developers] XML Parsing Strange Error

2010-06-28 Thread minhaz
Hi I am trying to parse XML with a simple sax parser. Interestingly i am able to see desired output in the emulator. but when i run the program on a device program shows no output. I tried many different way for example putting the XML file in a raw folder but every time no out put on device. Tr

Re: [android-developers] Xml parsing

2010-06-21 Thread Mark Murphy
On Sun, Jun 20, 2010 at 10:56 AM, Davide wrote: > Does Android support jaxb? No. > It look no. Any framework you can tell me? DOM, SAX, and the XML Pull Parser (org.xmlpull) are available in Android. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://c

[android-developers] Xml parsing

2010-06-21 Thread Davide
Hi, Does Android support jaxb? It look no. Any framework you can tell me? I have tried to use annotation myself, but is a little slow. Android is very slow reading annotations... -- _| _.o _| _ (_| (_| \/ | (_| (/_ -- You received this message because you are subscribed to the Goog

[android-developers] XML Parsing

2010-02-02 Thread Sasikumar.S
Hi, I'm having a XML file like *sample.xml* * * ** ** *jan 25th* ** *mar 6th* ** ** * apr 18th july 29th * ** In this i need to parse tag. I need only the date tag in only not in . I need jan 25th & apr 18th. But i'm getting jan 25th, mar 6th , apr 18th & july 29th. how t

[android-developers] XML Parsing

2010-02-02 Thread Sasikumar.S
Hi, I'm having a XML file like *sample.xml* * * ** ** *jan 25th* ** *mar 6th* ** ** * apr 18th july 29th * ** In this i need to parse tag. I need only the date tag in only not in . I need jan 25th & apr 18th. But i'm getting jan 25th, mar 6th , apr 18th & july 29th. how to g

Re: [android-developers] XML Parsing is Slow

2009-12-04 Thread Desu Vinod Kumar
HI Which Parsing Method u were usike for example like Sax or dom or any other parsing better i suggest u to use Sax parse execution speed is good On Sat, Dec 5, 2009 at 11:12 AM, Sasikumar.S wrote: > Hi, > > I like to parse a XML file in android. > It is taking too much time to parse a xml

[android-developers] XML Parsing is Slow

2009-12-04 Thread Sasikumar.S
Hi, I like to parse a XML file in android. It is taking too much time to parse a xml in android. what is the reason?.. It is taking more than 5 minutes also to parse a file. The same thing will continue in phone?... Any one know baout this?.. Thanks in advance.. -- Thanks & Regards Sasikumar.

[android-developers] XML parsing

2009-03-14 Thread nowb
Hello Android Developers! I´m trying to port a java xml-parser to android. The parser is using ElementImpl from the com.sun.org.apache.xerces.internal.dom package. This package does not exist in the android sdk, the corresponding package seems to be org.apache.harmony.xml.dom. However I can´t re

[android-developers] xml parsing

2009-02-28 Thread Dilli
Hi all I am developing a simple application to parse the xml content 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 at the top of the xml file is it correct or i

[android-developers] XML parsing problem (stops at non-utf characters)

2009-02-07 Thread John Doe
I am having difficulty while parsing some Turkish sites.Here is the part of the code. The problem is when the title contains some non-UTF characters like ç,ü,ı,ö,ğ it stops parsing and doesnt read the rest. For example if the title is "Ebru Gündeş askere gitti" it only reads until "ş" which is "Eb

[android-developers] XML parsing prob

2008-12-02 Thread eyedol
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 Sample xml 1 The book An enterpris

[android-developers] XML Parsing Error

2008-10-18 Thread JavaAndroid
Hi All, I m just tried XML parsing in Android activity class...When i run the application i m getting unKnown Error in Screen... This is my Activity Class import java.net.URL; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; import org.xml.sax.InputSource; import o