本文整理汇总了Java中com.sun.syndication.feed.synd.SyndImageImpl类的典型用法代码示例。如果您正苦于以下问题:Java SyndImageImpl类的具体用法?Java SyndImageImpl怎么用?Java SyndImageImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SyndImageImpl类属于com.sun.syndication.feed.synd包,在下文中一共展示了SyndImageImpl类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: createSyndImage
import com.sun.syndication.feed.synd.SyndImageImpl; //导入依赖的package包/类
protected SyndImage createSyndImage(Image rssImage) {
SyndImage syndImage = new SyndImageImpl();
syndImage.setTitle(rssImage.getTitle());
syndImage.setUrl(rssImage.getUrl());
syndImage.setLink(rssImage.getLink());
return syndImage;
}
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:8,代码来源:ConverterForRSS090.java
示例2: RSSFeed
import com.sun.syndication.feed.synd.SyndImageImpl; //导入依赖的package包/类
/**
* Constructor. The identityKey is needed to generate personal URLs for the corresponding user.
*/
protected RSSFeed(final Feed feed, final Identity identity, final Long courseId, final String nodeId,final Translator translator, RepositoryService repositoryService) {
super();
// This helper object is required for generating the appropriate URLs for
// the given user (identity)
final FeedViewHelper helper = new FeedViewHelper(feed, identity, courseId, nodeId, translator, repositoryService);
setFeedType("rss_2.0");
setEncoding(RSSServlet.DEFAULT_ENCODING);
setTitle(feed.getTitle());
// According to the rss specification, the feed channel description is not
// (explicitly) allowed to contain html tags.
String strippedDescription = FilterFactory.getHtmlTagsFilter().filter(feed.getDescription());
strippedDescription = strippedDescription.replaceAll(" ", " "); // TODO: remove when filter
// does it
setDescription(strippedDescription);
setLink(helper.getJumpInLink());
setPublishedDate(feed.getLastModified());
// The image
if (feed.getImageName() != null) {
final SyndImage image = new SyndImageImpl();
image.setDescription(feed.getDescription());
image.setTitle(feed.getTitle());
image.setLink(getLink());
image.setUrl(helper.getImageUrl());
setImage(image);
}
final List<SyndEntry> episodes = new ArrayList<SyndEntry>();
for (final Item item : feed.getPublishedItems()) {
final SyndEntry entry = new SyndEntryImpl();
entry.setTitle(item.getTitle());
final SyndContent itemDescription = new SyndContentImpl();
itemDescription.setType("text/plain");
itemDescription.setValue(helper.getItemDescriptionForBrowser(item));
entry.setDescription(itemDescription);
// Link will also be converted to the rss guid tag. Except if there's an
// enclosure, then the enclosure url is used.
// Use jump-in link far all entries. This will be overriden if the item
// has an enclosure.
entry.setLink(helper.getJumpInLink() + "#" + item.getGuid());
entry.setPublishedDate(item.getPublishDate());
entry.setUpdatedDate(item.getLastModified());
// The enclosure is the media (audio or video) file of the episode
final Enclosure media = item.getEnclosure();
if (media != null) {
final SyndEnclosure enclosure = new SyndEnclosureImpl();
enclosure.setUrl(helper.getMediaUrl(item));
enclosure.setType(media.getType());
enclosure.setLength(media.getLength());
// Also set the item link to point to the enclosure
entry.setLink(helper.getMediaUrl(item));
final List<SyndEnclosure> enclosures = new ArrayList<SyndEnclosure>();
enclosures.add(enclosure);
entry.setEnclosures(enclosures);
}
episodes.add(entry);
}
setEntries(episodes);
}
开发者ID:huihoo,项目名称:olat,代码行数:69,代码来源:RSSFeed.java
示例3: RSSFeed
import com.sun.syndication.feed.synd.SyndImageImpl; //导入依赖的package包/类
/**
* Constructor. The identityKey is needed to generate personal URLs for the corresponding user.
*/
protected RSSFeed(final Feed feed, final Identity identity, final Long courseId, final String nodeId, final Translator translator, RepositoryService repositoryService) {
super();
// This helper object is required for generating the appropriate URLs for
// the given user (identity)
final FeedViewHelper helper = new FeedViewHelper(feed, identity, courseId, nodeId, translator, repositoryService);
setFeedType("rss_2.0");
setEncoding(DEFAULT_ENCODING);
setTitle(feed.getTitle());
// According to the rss specification, the feed channel description is not
// (explicitly) allowed to contain html tags.
String strippedDescription = FilterFactory.getHtmlTagsFilter().filter(feed.getDescription());
strippedDescription = strippedDescription.replaceAll(" ", " "); // TODO: remove when filter
// does it
setDescription(strippedDescription);
setLink(helper.getJumpInLink());
setPublishedDate(feed.getLastModified());
// The image
if (feed.getImageName() != null) {
final SyndImage image = new SyndImageImpl();
image.setDescription(feed.getDescription());
image.setTitle(feed.getTitle());
image.setLink(getLink());
image.setUrl(helper.getImageUrl());
setImage(image);
}
final List<SyndEntry> episodes = new ArrayList<SyndEntry>();
for (final Item item : feed.getPublishedItems()) {
final SyndEntry entry = new SyndEntryImpl();
entry.setTitle(item.getTitle());
final SyndContent itemDescription = new SyndContentImpl();
itemDescription.setType("text/plain");
itemDescription.setValue(helper.getItemDescriptionForBrowser(item));
entry.setDescription(itemDescription);
// Link will also be converted to the rss guid tag. Except if there's an
// enclosure, then the enclosure url is used.
// Use jump-in link far all entries. This will be overriden if the item
// has an enclosure.
entry.setLink(helper.getJumpInLink() + "#" + item.getGuid());
entry.setPublishedDate(item.getPublishDate());
entry.setUpdatedDate(item.getLastModified());
// The enclosure is the media (audio or video) file of the episode
final Enclosure media = item.getEnclosure();
if (media != null) {
final SyndEnclosure enclosure = new SyndEnclosureImpl();
enclosure.setUrl(helper.getMediaUrl(item));
enclosure.setType(media.getType());
enclosure.setLength(media.getLength());
// Also set the item link to point to the enclosure
entry.setLink(helper.getMediaUrl(item));
final List<SyndEnclosure> enclosures = new ArrayList<SyndEnclosure>();
enclosures.add(enclosure);
entry.setEnclosures(enclosures);
}
episodes.add(entry);
}
setEntries(episodes);
}
开发者ID:huihoo,项目名称:olat,代码行数:69,代码来源:RSSFeed.java
示例4: WriteToFile
import com.sun.syndication.feed.synd.SyndImageImpl; //导入依赖的package包/类
private boolean WriteToFile(String title, String link, String description, Date Pubdate,
String copyright,String imageTitle, String imageDescription,String imageLink, String imageUrl,String language,String author)
{
boolean retval=false;
try
{
// Specify Filename
String fileName=data.filename;;
// Set channel ...
data.feed =new SyndFeedImpl();
if(Const.isEmpty(meta.getVersion()))
data.feed.setFeedType("rss_2.0");
else
data.feed.setFeedType(meta.getVersion());
// Set encoding ...
if(Const.isEmpty(meta.getEncoding()))
data.feed.setEncoding("iso-8859-1");
else
data.feed.setEncoding(meta.getEncoding());
if(title!=null) data.feed.setTitle(title);
if(link!=null) data.feed.setLink(link);
if(description!=null) data.feed.setDescription(description);
if(Pubdate!=null) data.feed.setPublishedDate(Pubdate);//data.dateParser.parse(Pubdate.toString()));
// Set image ..
if(meta.AddImage())
{
SyndImage image = new SyndImageImpl();
if(imageTitle!=null) image.setTitle(title);
if(imageLink!=null) image.setLink(link);
if(imageUrl!=null) image.setUrl(imageUrl);
if(imageDescription!=null) image.setDescription(imageDescription);
data.feed.setImage(image);
}
if(language!=null) data.feed.setLanguage(language);
if(copyright!=null) data.feed.setCopyright(copyright);
if(author!=null) data.feed.setAuthor(author);
// Add entries
data.feed.setEntries(data.entries);
Writer writer = new FileWriter(fileName);
SyndFeedOutput output = new SyndFeedOutput();
output.output(data.feed,writer);
writer.close();
if (meta.AddToResult())
{
// Add this to the result file names...
ResultFile resultFile = new ResultFile(ResultFile.FILE_TYPE_GENERAL, KettleVFS.getFileObject(fileName), getTransMeta().getName(), getStepname());
resultFile.setComment("This file was created with a RSS Output step");
addResultFile(resultFile);
}
if(log.isDetailed())
log.logDetailed(toString(),Messages.getString("RssOutput.Log.CreatingFileOK",fileName));
retval=true;
}
catch(Exception e)
{
logError(Messages.getString("RssOutput.Log.ErrorCreatingFile",e.toString()));
setErrors(1);
retval = false;
}
return retval;
}
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:71,代码来源:RssOutput.java
示例5: WriteToFile
import com.sun.syndication.feed.synd.SyndImageImpl; //导入依赖的package包/类
private boolean WriteToFile(String title, String link, String description, Date Pubdate,
String copyright,String imageTitle, String imageDescription,String imageLink, String imageUrl,String language,String author)
{
boolean retval=false;
try
{
// Specify Filename
String fileName=data.filename;;
// Set channel ...
data.feed =new SyndFeedImpl();
if(Const.isEmpty(meta.getVersion()))
data.feed.setFeedType("rss_2.0");
else
data.feed.setFeedType(meta.getVersion());
// Set encoding ...
if(Const.isEmpty(meta.getEncoding()))
data.feed.setEncoding("iso-8859-1");
else
data.feed.setEncoding(meta.getEncoding());
if(title!=null) data.feed.setTitle(title);
if(link!=null) data.feed.setLink(link);
if(description!=null) data.feed.setDescription(description);
if(Pubdate!=null) data.feed.setPublishedDate(Pubdate);//data.dateParser.parse(Pubdate.toString()));
// Set image ..
if(meta.AddImage())
{
SyndImage image = new SyndImageImpl();
if(imageTitle!=null) image.setTitle(title);
if(imageLink!=null) image.setLink(link);
if(imageUrl!=null) image.setUrl(imageUrl);
if(imageDescription!=null) image.setDescription(imageDescription);
data.feed.setImage(image);
}
if(language!=null) data.feed.setLanguage(language);
if(copyright!=null) data.feed.setCopyright(copyright);
if(author!=null) data.feed.setAuthor(author);
// Add entries
data.feed.setEntries(data.entries);
Writer writer = new FileWriter(fileName);
SyndFeedOutput output = new SyndFeedOutput();
output.output(data.feed,writer);
writer.close();
if (meta.AddToResult())
{
// Add this to the result file names...
ResultFile resultFile = new ResultFile(ResultFile.FILE_TYPE_GENERAL, KettleVFS.getFileObject(fileName, getTransMeta()), getTransMeta().getName(), getStepname());
resultFile.setComment("This file was created with a RSS Output step");
addResultFile(resultFile);
}
if(log.isDetailed())
logDetailed(BaseMessages.getString(PKG, "RssOutput.Log.CreatingFileOK",fileName));
retval=true;
}
catch(Exception e)
{
logError(BaseMessages.getString(PKG, "RssOutput.Log.ErrorCreatingFile",e.toString()));
setErrors(1);
retval = false;
}
return retval;
}
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:71,代码来源:RssOutput.java
注:本文中的com.sun.syndication.feed.synd.SyndImageImpl类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论