0

我正在尝试在 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>

请告诉我如何使用 SAXParser在标签<description>中获取元素:

  • 元素 1

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

  • 元素 2

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

4

1 回答 1

0

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

请参阅此处获取教程:如何使用 SAX 解析器解析 XML

于 2013-03-13T08:12:07.640 回答