3

我正在尝试用 Java 构建一个轮询服务,以检查来自 RSS 提要的更新。

在检测到新项目时,它应该只在系统中进一步发送新项目。

是否有执行此操作的 API,或者我必须自己进行比较检查?

目前,我的轮询器只返回它当前看到的导致我系统中重复的内容。

4

3 回答 3

1

Sun 有一个为创建提要而构建的 RSS 实用程序库。然而,它还包括一个有用的 RSS 解析器,我用它来做类似的事情。

您可以从此处下载库(向下滚动到底部以获取有关解析器的更多信息):

http://java.sun.com/developer/technicalArticles/javaserverpages/rss_utilities/

要检查新项目,只需获取 GUID 并将其与现有项目的 GUID 进行比较。

// Create an RSS Parser
RssParser parser = RssParserFactory.createDefault();

// Parse the feed
Rss rss = parser.parse( new URL( YOUR_FEED ) );

// Get the channel
Channel channel = rss.getChannel();

// Get the items
Collection<Item> items = channel.getItems();

// Loop for each item
for ( Item item : items )
{
  // Get the GUID
  Guid guid = item.getGuid();

  // Loop for each of the previously seen GUIDs and compare
}
于 2010-02-19T01:18:31.643 回答
0

与您需要的类似,在 Informa 中可用

“轮询模块旨在为通道变化的后台轮询提供便捷的服务”

http://informa.sourceforge.net/poller.html

于 2010-02-18T14:08:57.147 回答
0

好吧,我是 java 新手……但这是我尝试过并且运行良好的简单代码。我没有从特定网站读取 RSS,而是从本地目录读取 RSS。使用http://informa.sourceforge.net/上提供的 Informa API

public class Read_UpdateRSS implements de.nava.informa.utils.poller.PollerObserverIF {

public static void main(String[] args) {

try {

        File in = new File("/home/RSSFeed/rssfeed.xml");

        ChannelBuilder build = new ChannelBuilder();

        Channel channel = (Channel) FeedParser.parse(build,in);
        System.out.println("Description:" + channel.getDescription());
        System.out.println("Title:" + channel.getTitle());

        // Magic of polling starts here. polling is done every 10 minutes

        Poller poll = new Poller();
        PollerObserverIF observer = new Read_UpdateRSS();
        poll.addObserver(observer);
        poll.registerChannel(channel, 10 * 60 * 1000);

        for(Object x: channel.getItems()){

            Item anItem = (Item) x;
            System.out.println(anItem.getTitle() + "-");
            System.out.println(anItem.getDescription());
    }

    } catch (Exception e) {

    }
}

@Override
public void channelChanged(ChannelIF arg0) {}

@Override
public void channelErrored(ChannelIF arg0, Exception arg1) {}

@Override
public void itemFound(ItemIF item, ChannelIF channel) {

    System.out.println("new item found");
    channel.addItem(item);
}

@Override
public void pollFinished(ChannelIF channel) {
    System.out.println("Finished polling with " +  channel.getItems().size() + " items in the channel");

}

@Override
public void pollStarted(ChannelIF channel) {
    System.out.println("Started polling with " + channel.getItems().size() + " items in the channel");

}

}

于 2012-06-19T08:21:35.110 回答