1

次の Xml を解析する方法を教えてください。HttpGet メソッドのレスポンスとして以下の xml を取得します。この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 パーサーの実装例を参照してください。

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 に答える