今天看到系统发来的短消息采用RSS订阅每个类别最新文档我查了下资料发现有个rsslibj的开源工具可以帮助我们写自己的rss文档当然我这里讲的是java的实现 import comrsslibjelementsChannel; public class Writer { public static void main(String[] args) throws InstantiationException ClassNotFoundException IllegalAccessException { Channel channel=new Channel(); channelsetDescription(This is my sample channel); channelsetLink(//localhost/); channelsetTitle(My Channel); channelsetImage(//localhost/ The Channel Image ); channelsetTextInput(//localhost/search Search The Channel Image The Channel Image s); channeladdItem(//localhost/item The First Item covers details on the first item> The First Item) setDcContributor(Joseph B Ottinger); channeladdItem(//localhost/item The Second Item covers details on the second item The Second Item) setDcCreator(Jason Bell); Systemoutprintln(The feed in RDF: +channelgetFeed(rdf)); } } 开始怀疑中文会有问题(老外的软件)测试了一下居然很好什么问题也没有你要是熟悉rss文档格式很容易编写一个标准的rss的writer出来 |