android - 如何从 rss URL 读取 RSS 提要?

标签 android rss feed

我正在开发一个 Android 应用程序,我必须在其中从 RSS 提要中获取数据,我能够阅读标题、链接并面临描述问题。如果是这种格式

<description>     
  worsening of developments in......
</description>

我能够阅读它,但在某些 rss 提要中也有这种格式

 <description>
    <p><a href="http://news.yahoo.com/ap-sources
 </description>

我没有收到这段文字.. 这是 Rss 提要网址:http://news.yahoo.com/rss/politics .

如何阅读这个描述..

最佳答案

package com.samir.XMLParser;

import java.io.*;
import java.net.*;
import java.util.*;
import javax.xml.parsers.*;
import org.w3c.dom.*;

public class HTMLRemoverParser {

    HTMLRemoverBean objBean;
    Vector<HTMLRemoverBean> vectParse;

    int mediaThumbnailCount;
    boolean urlflag;
    int count = 0;

    public HTMLRemoverParser() {
        try {

            vectParse = new Vector<HTMLRemoverBean>();
            URL url = new URL("http://news.yahoo.com/rss/politics");
            URLConnection con = url.openConnection();

            System.out.println("Connection is : " + con);

            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    con.getInputStream()));
            System.out.println("Reader :" + reader);

            String inputLine;
            String fullStr = "";
            while ((inputLine = reader.readLine()) != null)
                fullStr = fullStr.concat(inputLine + "\n");

            InputStream istream = url.openStream();

            DocumentBuilder builder = DocumentBuilderFactory.newInstance()
                    .newDocumentBuilder();

            Document doc = builder.parse(istream);

            doc.getDocumentElement().normalize();


            NodeList nList = doc.getElementsByTagName("item");

            System.out.println();

            for (int temp = 0; temp < nList.getLength(); temp++) {

                Node nNode = nList.item(temp);
                if (nNode.getNodeType() == Node.ELEMENT_NODE) {

                    Element eElement = (Element) nNode;

                    objBean = new HTMLRemoverBean();
                    vectParse.add(objBean);

                    objBean.title = getTagValue("title", eElement);
                    objBean.description = getTagValue("description", eElement);
                    String noHTMLString = objBean.description.replaceAll("\\<.*?\\>", "");
                    objBean.description=noHTMLString;
                    objBean.link = getTagValue("link", eElement);
                    objBean.pubdate = getTagValue("pubDate", eElement);

                }
            }

            for (int index1 = 0; index1 < vectParse.size(); index1++) {
                HTMLRemoverBean ObjNB = (HTMLRemoverBean) vectParse
                        .get(index1);

                System.out.println("Item No : " + index1);
                System.out.println();

                System.out.println("Title is : " + ObjNB.title);
                System.out.println("Description is : " + ObjNB.description);
                System.out.println("Link is : " + ObjNB.link);
                System.out.println("Pubdate is : " + ObjNB.pubdate);

                System.out.println();
                System.out
                        .println("-------------------------------------------------------------------------------------------------------------");

            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private String getTagValue(String sTag, Element eElement) {
        NodeList nlList = eElement.getElementsByTagName(sTag).item(0)
                .getChildNodes();

        Node nValue = (Node) nlList.item(0);

        return nValue.getNodeValue();

    }

    public static void main(String[] args) {
        new HTMLRemoverParser();
    }

}

Bean 是::

package com.samir.XMLParser;

public class HTMLRemoverBean {

    public String title;
    public String description;
    public String link;
    public String pubdate;

}

关于android - 如何从 rss URL 读取 RSS 提要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9257949/

相关文章:

java - 如何检查设备是否具有给定的功能?

android - Android 上的 VideoGrabber OF_PIXELS_RGB 渲染不正确

java - 随机音频按钮在设定的点击次数后停止工作

XML 到 XHTML - 最佳方法?

javascript - 通过 Javascript/PHP 更快地阅读 RSS

java - Android RSS 阅读器 - 教程错误

java - 创建具有不同 Intent 的多个通知

parsing - 如何创建一个自动新闻网站?

c# - 使用 RSS 提要 XML 并显示信息

facebook - 使用 js sdk 将 feed 发布到 pagewall