如何用 Java 编写 RSS 提要?

Posted

技术标签:

【中文标题】如何用 Java 编写 RSS 提要?【英文标题】:How to write an RSS feed with Java? 【发布时间】:2010-09-11 21:37:09 【问题描述】:

我正在使用 Java,并且需要生成一个简单的、符合标准的 RSS 提要。我该怎么办?

【问题讨论】:

【参考方案1】:

我推荐使用Rome:

// Feed header
SyndFeed feed = new SyndFeedImpl();
feed.setFeedType("rss_2.0");
feed.setTitle("Sample Feed");
feed.setLink("http://example.com/");

// Feed entries
List entries = new ArrayList();
feed.setEntries(entries);

SyndEntry entry = new SyndEntryImpl();
entry.setTitle("Entry #1");
entry.setLink("http://example.com/post/1");
SyndContent description = new SyndContentImpl();
description.setType("text/plain");
description.setValue("There is text in here.");
entry.setDescription(description);
entries.add(entry);

// Write the feed to XML
StringWriter writer = new StringWriter();
new SyndFeedOutput().output(feed, writer);
System.out.println(writer.toString());

【讨论】:

现在这似乎是一个死项目。该示例甚至无法编译! Rome 使用来自 com.sun.syndication.* 包的 java 类。这个解决方案现在太旧了。

以上是关于如何用 Java 编写 RSS 提要?的主要内容,如果未能解决你的问题,请参考以下文章

如何用java编写函数?

如何获取 RSS 提要上的所有旧项目?

如何用java编写firebase云函数

如何用eclipse编写java窗口程序

请问如何用Java编写一个汽车类Car

如何用JAVA编写程序使能够纵向输出古诗