我正在使用 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;只有内容:编码让我无法理解。