从媒体解析图像链接:RSS提要android的缩略图标记

时间:2016-10-28 20:22:39

标签: android android-asynctask rss

我正在尝试解析此RSS源中的数据

http://www.thedailystar.net/frontpage/rss.xml

我正在使用AsyncTask,我可以解析除“media:thumbnail”之外的所有其他标签 这是代码

for (int i = 0; i < items.getLength(); i++) { Node currentchild = items.item(i); if (currentchild.getNodeName().equalsIgnoreCase("item")) { NewsItems item=new NewsItems(); NodeList itemchilds = currentchild.getChildNodes(); for (int j = 0; j < itemchilds.getLength(); j++) { Node current = itemchilds.item(j); if (current.getNodeName().equalsIgnoreCase("title")){ item.setTitle(current.getTextContent()); }else if (current.getNodeName().equalsIgnoreCase("description")){ item.setDescription(current.getTextContent()); }else if (current.getNodeName().equalsIgnoreCase("media:thumbnail")){ item.setMedia(current.getTextContent());//This is not working }else if (current.getNodeName().equalsIgnoreCase("link")){ item.setUrl(current.getTextContent()); } }

我已经检查了以前关于这个问题的答案,但没有一个对我有用。

谢谢!

1 个答案:

答案 0 :(得分:0)

getTextContent()无法正常工作,因为该节点没有任何文字内容。

您必须访问节点的“url”属性。

getAttributes().getNamedItem("url").getTextContent()