搜索或添加rss feed_使用Feed通知程序获取RSS Feed的弹出通知

搜索或添加rss feed

搜索或添加rss feed

Are you looking for a way to get updates from your favorite websites right to your desktop?  If so, you’ll want to check out Feed Notifier. This free Windows application runs in the system tray and delivers pop-up notifications to your desktop when your subscribed RSS feeds are updated.

您是否正在寻找一种方法,将喜爱的网站上的更新直接发送到桌面? 如果是这样,您将要签出Feed通知程序。 这个免费的Windows应用程序在系统托盘中运行,并在您更新订阅的RSS feed时将弹出式通知传递到您的桌面。

Download and install Feed Notifier. (Download link below) When you are finished installing, the Feed Notifier Preferences window will open. Click on the Add… button to add an RSS feed.

下载并安装Feed通知程序。 (下面的下载链接)完成安装后,将打开“ Feed通知程序首选项”窗口。 单击添加...按钮以添加RSS源。

sshot-1

Copy and paste the Feed URL into the text box and click Next.

将Feed URL复制并粘贴到文本框中,然后单击Next

sshot-2

Choose your polling interval. This is how often your feed will be checked for new items. You can set your polling interval for days, hours, minutes, or even seconds. Click FInish.

选择您的轮询间隔。 这是检查Feed中是否有新商品的频率。 您可以将轮询间隔设置为几天,几小时,几分钟甚至几秒钟。 点击完成

sshot-3

At your configured interval, Feed Notifier will check your feeds for new items. If new items are present, they will pop up above your system tray.  You’ll get an intro portion of the article. Simply Click the headline in the feed pop up…

按照您配置的时间间隔,Feed通知程序将检查您的Feed中是否有新项目。 如果存在新项目,它们将在系统托盘上方弹出。 您将获得本文的介绍部分。 只需单击Feed中的标题即可弹出…

sshot-14

…to open the full article in your default browser.

…在默认浏览器中打开全文。

sshot-15

Setting Preferences

设定偏好

Open the preferences of Feed Notifier, by going to Start > All Programs > Feed Notifier, or right clicking on the system tray icon and selecting Preferences.

转到“开始”>“所有程序”>“ Feed通知程序” ,或右键单击系统任务栏图标并选择“偏好设置” ,以打开Feed通知程序的首选项

sshot-16

On the Pop-ups tab you can configure the duration in seconds that each article stays displayed on your screen. The default is five seconds. You can also change the size of the display, the theme, and the amount of content displayed.

在弹出窗口选项卡上,您可以配置每篇文章停留在屏幕上的持续时间(以秒为单位)。 默认值为五秒钟。 您还可以更改显示的大小,主题和显示的内容量。

sshot-17

The Options tab offers additional configurations like article caching and using a proxy server.

“选项”选项卡提供了其他配置,例如文章缓存和使用代理服务器。

sshot-8

Filter tab allows you to filter in or out certain content. To add a filter click Add…

过滤选项卡允许您过滤某些内容。 要添加过滤器,请单击添加…。

sshot-18

then type in the filter rule. You can even choose to apply it to only certain feeds. Click OK.

然后输入过滤规则。 您甚至可以选择仅将其应用于某些供稿。 单击确定

sshot-9

Feed Notifier will display on the filters tab the number of times the filter is applied. Click OK when finished.

Feed通知程序将在过滤器选项卡上显示应用过滤器的次数。 完成后单击确定

sshot-20

You can scroll though the articles by using the forward and back buttons at the lower left, or use the play / pause buttons to move though the articles in a slideshow-type fashion.

您可以使用左下角的前进和后退按钮滚动文章,也可以使用播放/暂停按钮以幻灯片形式浏览文章。

sshot-13

Feed Notifier is nice way to get your updated feeds directly to your desktop in a timely fashion. It’s supports all RSS and Atom feeds and features a clean look and feel with plenty of customizable options.

Feed Notifier是一种将及时更新的Feed直接直接发送到桌面的好方法。 它支持所有RSS和Atom提要,并具有干净的外观和大量可自定义的选项。

Download Feed Notifier

下载Feed通知程序

翻译自: https://www.howtogeek.com/howto/14632/get-pop-up-notifications-for-your-rss-feeds-with-feed-notifier/

搜索或添加rss feed

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用SAX解析器实现RSS Feed文件的解析,可以按照以下步骤进行: 1. 创建SAXParserFactory和SAXParser对象:首先需要创建SAXParserFactory对象和SAXParser对象,使用它们来解析RSS Feed文件。 ```java SAXParserFactory factory = SAXParserFactory.newInstance(); SAXParser parser = factory.newSAXParser(); ``` 2. 创建RSSFeedHandler类:创建一个RSSFeedHandler类,继承自DefaultHandler类,用于处理SAX解析器解析XML文件时的事件。 ```java public class RSSFeedHandler extends DefaultHandler { // 处理startElement事件 @Override public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { // ... } // 处理endElement事件 @Override public void endElement(String uri, String localName, String qName) throws SAXException { // ... } // 处理characters事件 @Override public void characters(char[] ch, int start, int length) throws SAXException { // ... } } ``` 3. 实现RSSFeedHandler类的方法:在RSSFeedHandler类中实现startElement、endElement和characters等方法,用于处理XML文件中的元素和内容。比如,在startElement方法中,可以判断当前元素是否是item元素,如果是,则创建一个RSSItem对象,并将其添加RSS Feed中。 ```java public class RSSFeedHandler extends DefaultHandler { private RSSFeed feed; private RSSItem item; // 处理startElement事件 @Override public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if (qName.equalsIgnoreCase("item")) { item = new RSSItem(); feed.addItem(item); } else if (qName.equalsIgnoreCase("title") && item != null) { item.setTitle(true); } else if (qName.equalsIgnoreCase("link") && item != null) { item.setLink(true); } else if (qName.equalsIgnoreCase("description") && item != null) { item.setDescription(true); } } // 处理endElement事件 @Override public void endElement(String uri, String localName, String qName) throws SAXException { if (qName.equalsIgnoreCase("item")) { item = null; } } // 处理characters事件 @Override public void characters(char[] ch, int start, int length) throws SAXException { if (item != null) { item.addContent(new String(ch, start, length)); } } } ``` 4. 解析RSS Feed文件:使用SAXParser对象的parse方法,解析RSS Feed文件,并将RSS Feed对象返回。 ```java public RSSFeed parse(String url) throws Exception { RSSFeedHandler handler = new RSSFeedHandler(); parser.parse(url, handler); return handler.getFeed(); } ``` 总体来说,使用SAX解析器实现RSS Feed文件的解析,需要创建SAXParserFactory对象和SAXParser对象,实现RSSFeedHandler类的方法,并使用SAXParser对象的parse方法解析RSS Feed文件。SAX解析器是一种基于事件驱动的解析器,相比DOM解析器,它更加轻量级,适合处理大型XML文件。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值