0

我正在尝试从以 .aspx 结尾的 url 解析 RSS 提要。不幸的是,我无法修改 .aspx 文件。问题是文件的第一行使我的整个应用程序崩溃。

    <rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
        <channel>
        ...
        </channel>
    </rss>

当我尝试自己的不带 rss 标签的 RSS 提要时,它运行良好。我正在用下面的这个小代码解析信息:

    DefaultHttpClient httpClient = new DefaultHttpClient();
    HttpPost httpPost = new HttpPost("http://www.url.com/rssfeed.aspx");

    HttpResponse httpResponse = httpClient.execute(httpPost);
    HttpEntity httpEntity = httpResponse.getEntity();
    line = EntityUtils.toString(httpEntity);

有没有办法让 Java 忽略 .aspx 文件的第一行和最后一行?谢谢!

4

1 回答 1

0

尝试使用这个:

https://github.com/matshofman/Android-RSS-Reader-Library

或类似的东西。对 RSS 阅读器库进行一些研究。这是一件很常见的事情。

于 2013-05-17T17:01:03.000 回答