当前位置: 首页>>代码示例>>Java>>正文


Java Item.setGuid方法代码示例

本文整理汇总了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;
}
 
开发者ID:kaif-open,项目名称:kaif,代码行数:15,代码来源:HotArticleRssContentView.java

示例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;

}
 
开发者ID:rometools,项目名称:rome,代码行数:38,代码来源:RSS094Parser.java


注:本文中的com.rometools.rome.feed.rss.Item.setGuid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。