2009-05-04

首先當然要前往下載此程式庫囉
http://sourceforge.net/projects/rsslib4j
雖然版本才2.0,不過基本功能已經很完善了~

以下是範例程式碼:##ReadMore##

  1. import java.net.*;
  2. import java.util.*;
  3. import org.gnu.stealthp.rsslib.*;
  4.  
  5. public class testRSS {
  6.     public static void main(String[] args) {
  7.         URL url;
  8.         try {
  9.             url = new URL(“http://RSS’s URL”);
  10.             RSSHandler hand = new RSSHandler();
  11.             RSSParser.parseXmlFile(url, hand, false);
  12.             RSSChannel ch = hand.getRSSChannel();
  13.             System.out.println(ch.toString());
  14.             //ch.getTitle(); ch.getDescription(); ch.getLink();
  15.             LinkedList lst = hand.getRSSChannel().getItems();
  16.             for (int i = 0; i < lst.size(); i++) {
  17.                 RSSItem itm = (RSSItem) lst.get(i);
  18.                 System.out.println(itm.toString());
  19.                 //itm.getTitle(); itm.getDescription(); itm.getLink();
  20.             }
  21.         } catch(Exception e) {
  22.             System.out.println(“Read RSS Faild.”);
  23.         }
  24.     }
  25. }

以上Code即可取得RSS資訊然後將其輸出

rsslib4j屬於較簡單使用的程式庫,通常只用來讀取RSS資訊並做解析
其他RSS程式庫尚有Rome、rssutils這幾種
有興趣的人也可以去研究一下!

參考網站:

http://www.javayou.com/diary/626

http://autumnred2000.spaces.live.com/blog/cns!8296FC414E25FDCC!343.entry

0 回應:

張貼留言