使用罗马图书馆获取所有RSS提要条目

时间:2015-11-17 18:20:15

标签: java rss rome

我正在使用Rome库来解析一些RSS。 默认情况下,它需要25个条目。

请告诉我,如何获得下25个参赛作品?

我的测试代码是:

public static SyndFeed getSyndFeedForUrl(String url) throws Exception {

    SyndFeed feed = null;
    InputStream is = null;

    try {

        URLConnection openConnection = new URL(url).openConnection();
        is = new URL(url).openConnection().getInputStream();
        if("gzip".equals(openConnection.getContentEncoding())){
            is = new GZIPInputStream(is);
        }
        InputSource source = new InputSource(is);
        SyndFeedInput input = new SyndFeedInput();
        feed = input.build(source);

    } catch (Exception e){
        e.printStackTrace();
    } finally {
        if( is != null) is.close();
    }

    return feed;
}

public static void main(String[] args) {
        SyndFeed feed;
        try {
            feed = getSyndFeedForUrl("http://example.com/rss");
            List res = feed.getEntries();
            for(Object o : res) {
                System.out.println(((SyndEntryImpl) o).getDescription().getValue());
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

谢谢!

1 个答案:

答案 0 :(得分:4)

当您致电feed.getEntries()时,Rome库会返回http://example.com/rss中可用的所有条目。不可能获得比xml文档更多的内容(除非条目已经在像Feedly这样的服务中缓存)。