本文整理汇总了Java中com.rometools.rome.feed.rss.Item.setGuid方法的典型用法代码示例。如果您正苦于以下问题:Java Item.setGuid方法的具体用法?Java Item.setGuid怎么用?Java Item.setGuid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.rometools.rome.feed.rss.Item
的用法示例。
在下文中一共展示了Item.setGuid方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: convertArticle
import com.rometools.rome.feed.rss.Item; //导入方法依赖的package包/类
private Item convertArticle(Article article) {
Item entry = new Item();
Guid guid = new Guid();
guid.setValue(article.getArticleId().toString());
entry.setGuid(guid);
entry.setTitle(cleanXml10Characters(article.getTitle()));
entry.setPubDate(Date.from(article.getCreateTime()));
Description summary = new Description();
summary.setType("html");
summary.setValue(buildSummary(article));
entry.setDescription(summary);
entry.setLink(articleUrl(article));
return entry;
}
示例2: parseItem
import com.rometools.rome.feed.rss.Item; //导入方法依赖的package包/类
@Override
public Item parseItem(final Element rssRoot, final Element eItem, final Locale locale) {
final Item item = super.parseItem(rssRoot, eItem, locale);
item.setExpirationDate(null);
final Element author = eItem.getChild("author", getRSSNamespace());
if (author != null) {
item.setAuthor(author.getText());
}
final Element eGuid = eItem.getChild("guid", getRSSNamespace());
if (eGuid != null) {
final Guid guid = new Guid();
// getRSSNamespace()); DONT KNOW WHY DOESN'T WORK
final String att = eGuid.getAttributeValue("isPermaLink");
if (att != null) {
guid.setPermaLink(att.equalsIgnoreCase("true"));
}
guid.setValue(eGuid.getText());
item.setGuid(guid);
}
final Element comments = eItem.getChild("comments", getRSSNamespace());
if (comments != null) {
item.setComments(comments.getText());
}
return item;
}