使用 SAX 解析器,获取属性的值

2022-09-02 23:56:14

我正在使用Android从网络上解析XML。下面的代码显示了 XML 的示例。我遇到的问题是我无法获得项目标记的字符串值。当我使用它时,输出名称,而不是属性的值。name = attributes.getQName(i);

<weatherdata>
 <timetags>
  <item name="date">
   <value>20/04/2012</value>
   <unit/>
   <image/>
   <class>dynamic</class>
   <description>The current date</description>
  </item>

答案 1

attributes.getValue(i);

而不是

attributes.getQName(i);

因为正如文档所说:

getQName返回属性的限定(前缀)名称。

getValue按限定(前缀)名称查找属性的值。

请参阅此示例以获取属性名称和值


答案 2
 @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);
}

推荐