7

我使用rome 1.0为我的 java 应用程序生成 RSS。

在我的java中:

    SyndFeed feed = new SyndFeedImpl();
    feed.setFeedType( "rss_2.0" );
    feed.setTitle( "My Site" );
    feed.setLink( "http://example.com" );
    feed.setDescription( "Test Site." );    

    List<SyndEntry> entries = new ArrayList<SyndEntry>();
    SyndEntry entry = null;
    SyndContent description = null;

    entry = new SyndEntryImpl();
    entry.setTitle( "Entry1" );
    entry.setLink( "http://example.com/entry1" );
    entry.setPublishedDate( new Date() );

    description = new SyndContentImpl();
    description.setType("text/html");
    description.setValue( "This is the content of entry 1." );
    entry.setDescription( description );

    entries.add( entry );
    feed.setEntries(entries);

    Writer writer = new FileWriter("/home/jr/Desktop/stream.xml");
    SyndFeedOutput output = new SyndFeedOutput();
    output.output(feed,writer);
    writer.close();

生成的 RSS:

<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>My Site</title>
    <link>http://example.com</link>
    <description>Test Site.</description>
    <item>
      <title>Entry1</title>
      <link>http://example.com/entry1</link>
      <description>This is the content of entry 1.</description>
      <pubDate>Fri, 09 Nov 2012 01:28:57 GMT</pubDate>
      <guid>http://example.com/entry1</guid>
      <dc:date>2012-11-09T01:28:57Z</dc:date>
    </item>
  </channel>
</rss>

在此处验证 RSS 时,它具有以下建议:

  • 一个项目不应同时包含 pubDate 和 dc:date
  • 缺少原子:与 rel="self" 的链接

如何在罗马图书馆做推荐?生成的 RSS 是否正常?

谢谢。

4

3 回答 3

2

在您的自定义 SyndFeed 类中,确保您将 Date 变量命名为与 SyndFeed 类中的不同(即:而不是“publishedDate”,使用“pubDate”之类的名称。这似乎已经解决了我的问题。

public class CustomSyndFeed extends SyndFeedImpl {

protected Date pubDate;

    @Override
    public Date getPublishedDate() {
        return pubDate;
    }

    @Override
    public void setPublishedDate(final Date pubDate) {
        this.pubDate = new Date(pubDate.getTime());
    }
}
于 2015-06-03T17:28:12.400 回答
1

So this is happening because the SyndFeedImpl uses the same field for the date and publishedDate fields (from the DC Module) :

@Override
public Date getPublishedDate() {
    return getDCModule().getDate();
}

@Override
public void setPublishedDate(final Date publishedDate) {
    getDCModule().setDate(publishedDate);
}

Since the RSS093Generator (used by the RSS20Generator) creates a pubDate element from the specified item, but also inherits from the DCModuleGenerator, you get both this:

final Date pubDate = item.getPubDate();
        if (pubDate != null) {
            eItem.addContent(generateSimpleElement("pubDate", DateParser.formatRFC822(pubDate, Locale.US)));
        }

and this:

final Date dcDate = dcModule.getDate();
if (dcDate != null) {
    for (final Date date : dcModule.getDates()) {
        element.addContent(generateSimpleElement("date", DateParser.formatW3CDateTime(date, Locale.US)));
    }
}

This interaction can be prevented by implementing a custom SyndFeed of your own. In this case, all you need to do is create a class variable to store your pubDate so that the DCModule never gets a date set, and will therefore never generate your unwanted dc:date element.

I ran into the exact same problem and solved it by using this SyndFeed implementation:

public class CustomSyndFeed extends SyndFeedImpl {

    protected Date publishedDate;

    @Override
    public Date getPublishedDate() {
        return publishedDate;
    }

    @Override
    public void setPublishedDate(final Date publishedDate) {
        this.publishedDate = new Date(publishedDate.getTime());
    }
}
于 2014-12-30T03:44:38.547 回答
1

Little late to the party, but no answer here works out of the box, so I figured I'd add mine.

As @Vitor points out in his comment, the correct way of doing this to extend SyndEntryImpl and use it as SyndEntry entry = new CustomEntryImpl();.

public class CustomEntryImpl extends SyndEntryImpl {

    protected Date pubDate;

    @Override
    public Date getPublishedDate() {
        return pubDate;
    }

    @Override
    public void setPublishedDate(final Date pubDate) {
        this.pubDate = new Date(pubDate.getTime());
    }
}
于 2017-02-09T18:40:49.397 回答