1

我正在使用 Android 的 XML 解析助手 ( android.util.Xml.parse(InputStream, Encoding, ContentHandler) 来解析这个 RSS 提要:http ://www.rssweather.com/wx/nz/christchurch/rss.php 。它似乎无法识别content:encoded包含我要检索的数据的标签。下面是 XML 的结构:

<rss>
    <channel>
        <item>
            <title>...</title>
            <pubDate>...</pubDate>
            // Other tags
            <content:encoded>
                <![CDATA[
                    (.... this is what I want to retrieve ...)
                ]]>
            </content:encoded>
        </item>
    </channel>
</rsss>

这是我的代码:

void parse(){
    RootElement root = new RootElement("rss");
    Element channel = root.getChild("channel");
    Element item = channel.getChild("item");
    Element contentEncoded = item.getChild("content", "encoded");
    // Have also tried these two:
    Element encoded = item.getChild("encoded");
    Element content = item.getChild("content");

    contentEncoded.setEndTextElementListener(new EndTextElementListener() {
        public void end(String body) {
            Log.d("Test", "Content found: " + body);
        }
    });


    try {
        Xml.parse(feedUrl.openConnection().getInputStream(),
                Xml.Encoding.UTF_8, root.getContentHandler());
    } catch (Exception e){
        throw new RuntimeException(e);
    }
}

我哪里出错了?:) 我可以轻松地从<item>元素中检索其他数据,例如标题或 pubDate;只有内容:编码让我无法理解。

4

2 回答 2

3

你可以坚持使用你的 Android Sax Parser。我遇到了同样的问题以及使用内容命名空间和“编码”作为元素的解决方案。

您将在 rss 元素中找到内容命名空间:

<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/" ... >

所以获取元素看起来像这样:

item.getChild("http://purl.org/rss/1.0/modules/content/", "encoded");
于 2012-06-06T13:48:00.437 回答
0

...我认为“内容:编码”不是元素的有效名称。如果“内容”是一个命名空间并且“编码”了这个命名空间的一个元素,这将是有效的。

于 2012-05-04T22:18:26.387 回答