1

谁能告诉我我们如何解析以下 Xml。我得到以下 xml 作为 HttpGet 方法的响应。我可以以字符串形式存储这个 xml。

<?xml version="1.0" encoding="UTF-8"?>

<opml version="1">

    <head>

    <status>200</status>

        </head>

    <body>

<outline type="text" text="General" guide_id="f1" is_default="true"/>

<outline type="text" text="Rock Stations" guide_id="f2"/>

<outline type="text" text="Rock Stations" guide_id="f3"/>

<outline type="text" text="Rock" guide_id="f4"/>

<outline type="text" text="Awdhesh" guide_id="f5"/>

    </body>

</opml>

我想解析outline. 而且我还想text在列表视图中显示的值。请给我一个示例代码。

提前致谢 ...!!!

4

1 回答 1

0

如果您使用的是 SAXParcer,请参阅 sax parcer 实现示例:

http://mobile.tutsplus.com/tutorials/android/android-sdk-build-a-simple-sax-parser/

请注意方法

public void startElement(String uri, String localName, String qName,
            Attributes attributes) throws SAXException

在这里您可以检查属性及其值

if(localName.equals("outline"))
    String txtValue= attributes.getValue("text");
于 2012-06-12T05:06:43.900 回答