首先當然要前往下載此程式庫囉
http://sourceforge.net/projects/rsslib4j
雖然版本才2.0,不過基本功能已經很完善了~
以下是範例程式碼:##ReadMore##
- import java.net.*;
- import java.util.*;
- import org.gnu.stealthp.rsslib.*;
- public class testRSS {
- public static void main(String[] args) {
- URL url;
- try {
- url = new URL(“http://RSS’s URL”);
- RSSHandler hand = new RSSHandler();
- RSSParser.parseXmlFile(url, hand, false);
- RSSChannel ch = hand.getRSSChannel();
- System.out.println(ch.toString());
- //ch.getTitle(); ch.getDescription(); ch.getLink();
- LinkedList lst = hand.getRSSChannel().getItems();
- for (int i = 0; i < lst.size(); i++) {
- RSSItem itm = (RSSItem) lst.get(i);
- System.out.println(itm.toString());
- //itm.getTitle(); itm.getDescription(); itm.getLink();
- }
- } catch(Exception e) {
- System.out.println(“Read RSS Faild.”);
- }
- }
- }
以上Code即可取得RSS資訊然後將其輸出
rsslib4j屬於較簡單使用的程式庫,通常只用來讀取RSS資訊並做解析
其他RSS程式庫尚有Rome、rssutils這幾種
有興趣的人也可以去研究一下!
參考網站:
http://www.javayou.com/diary/626
http://autumnred2000.spaces.live.com/blog/cns!8296FC414E25FDCC!343.entry
0 回應:
張貼留言