如何在Android中的xml文件中解析标记值的属性

时间:2014-09-03 11:25:37

标签: android xml-parsing saxparser xml-attribute

我正在开发一个天气应用程序。 Xml文件已成功解析。但我想读这个值。

<yweather:astronomy sunrise="6:03 am" sunset="6:17 pm"/>

但是当我得到一个文本领域的天文学时,它会返回null。但是在logcat中,它表明已经通过了天文标签。

我想获得日出和日落的价值。请帮我解决一下这个。提前致谢

XmlHelper.java


   @Override 
        public void endElement(String uri, String localName, String qName) throws SAXException 
        { 
            currTag = false;   

            if(localName.equalsIgnoreCase("pubDate")) post.setDescription(currTagVal);  
            else if(localName.equalsIgnoreCase("lastBuildDate")) post.setLastBuildDate(currTagVal);
            else if(localName.equalsIgnoreCase("yweather:location city")) post.setLocation(currTagVal);  
            else if(localName.equalsIgnoreCase("channel")) Yweather.add(post);
        }


        @Override 
        public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { 
            Log.i(TAG, "TAG: " + localName);   
            currTag = true; currTagVal = ""; // Whenever <post> element is encountered it will create new object of PostValue 
            if(localName.equals("channel")) 
            {
                post = new WeatherValues(); 
            } 

        }

MainActivity.java

@Override 
        protected void onPostExecute(Void result) 
        { 
            StringBuilder builder = new StringBuilder(); 
            for(WeatherValues post : helper.Yweather) {

                builder.append(post.getLocation());

        } 
                tvResponse.setText(builder.toString()); 
                pd.dismiss(); 
                }   
        } 

这是xml文件 http://weather.yahooapis.com/forecastrss?w=2189713

2 个答案:

答案 0 :(得分:2)

我认为您的问题是由于xml文件正在使用命名空间引起的。你无法从yweather命名空间中读取。

为此,我会使用XmlPullParser(我最喜欢它)

首先,您可以指定功能并设置InputStream,您将从中读取xml文件。

XmlPullParser parser = Xml.newPullParser(); parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, true); parser.setInput(Inputstream_from_which_you_read, null);

然后你需要解析整个文档:

int eventType = parser.getEventType();
while (eventType != XmlPullParser.END_DOCUMENT) {
   if(eventType == XmlPullParser.START_TAG && parser.getName().equals("astronomy"){
   // yweather:forecast - forecast is name of the element, yweather is namespace
       String attribute = parser.getAttributealue("yweather","sunrise"); // where you specify the namespace and attribute name
   }
   eventType = parser.next();
}

答案 1 :(得分:1)

您正在尝试从标记中读取值。

根据我的知识,SAXParser会读取整个标记并返回这些标记之间的值,因为我已经完成了这一操作,现在我试图将数据放在XML文件中的特定标记之后,但如果可以的话,每次都会失败帮助我。

 <Placemark id="2">
                <styleUrl>#icon-503-DB4436</styleUrl>
                <name>Point 2</name>
                <ExtendedData>
                </ExtendedData>
                <description><![CDATA[jc]]></description>
                <Point>
                    <coordinates>73.07473,33.668113,0.0</coordinates>
                </Point>
            </Placemark>

因为开始元素搜索(您可以指定自己的元素)和结束元素搜索标记之间的所有标记,直到&lt; \ Placemark&gt;找不到....你可以根据你的要求跳过任何标签

或试试这可能对你有帮助

String filepath = "c:\\file.xml";
    DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
    Document doc = docBuilder.parse(filepath);

    Node placemark = doc.getElementsByTagName("Placemark").item(0);
    NamedNodeMap attr = Placemark.getAttributes();
    Node nodeAttr = attr.getNamedItem("id");