With SAX Parser, get an attribute's value
Asked Answered
L

3

17

I am parsing XML from the web using Android. The code below shows a sample of the XML. The problem I'm having is I can't get the string value of the item tag. When I use name = attributes.getQName(i); it outputs the name, not the value of the attribute.

<weatherdata>
 <timetags>
  <item name="date">
   <value>20/04/2012</value>
   <unit/>
   <image/>
   <class>dynamic</class>
   <description>The current date</description>
  </item>
Lightman answered 20/4, 2012 at 8:13 Comment(0)
S
20

use

attributes.getValue(i);

instead of

attributes.getQName(i);

because as doc says :

getQName :Return an attribute's qualified (prefixed) name.

getValue : Look up an attribute's value by qualified (prefixed) name.

see this example for getting attribute name and value

Starlet answered 20/4, 2012 at 8:17 Comment(0)
G
14
 @Override
public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {
     if(localName.equalsIgnoreCase("item")){
        //currentMessage.setMediaUrl(attributes.getValue(BaseFeedParser.Url));
                     String valueis=attributes.getValue("name")
    }
    super.startElement(uri, localName, qName, attributes);
}
Greatuncle answered 20/4, 2012 at 8:22 Comment(0)
T
3

Try attributes.getValue(i) method

Trashy answered 20/4, 2012 at 8:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.