Android - 使用SAXParser的Parser XML

时间:2013-03-13 07:59:21

标签: android xml xml-parsing saxparser

我正在尝试在Android应用程序中为我们的系统使用API​​。 我有这个XML:

<item>
    <title>Title 1</title>
    <description>
        <table>
            <tr>
                <td><img src="http://abc.com/image1.jpg" width='80' height='80' /></td>
                <td>This is summary 1</td>
            </tr>
        </table>
    </description>
    <link>http://abc.com</link>
    <pubDate>Wed, 13 Mar 2013 13:42:42 +0700</pubDate>
</item>

Plz告诉我如何获取标签中的元素&lt;使用SAXParser描述&gt;

  • 元素1

    src="http://abc.com/image1.jpg"

  • 元素2

    <td> This is summary for title 1</td>

1 个答案:

答案 0 :(得分:0)

这里有一整套使用SaxParser的软件包:http://developer.android.com/reference/android/sax/package-summary.html

请参阅此处获取教程:How to parse XML using the SAX parser