com.rometools.rome.feed.atom.Feed.setEncoding()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(163)

本文整理了Java中com.rometools.rome.feed.atom.Feed.setEncoding()方法的一些代码示例,展示了Feed.setEncoding()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Feed.setEncoding()方法的具体详情如下:
包路径:com.rometools.rome.feed.atom.Feed
类名称:Feed
方法名:setEncoding

Feed.setEncoding介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-framework

@Test
public void writeOtherCharset() throws IOException, SAXException {
  Feed feed = new Feed("atom_1.0");
  feed.setTitle("title");
  String encoding = "ISO-8859-1";
  feed.setEncoding(encoding);
  MockHttpOutputMessage outputMessage = new MockHttpOutputMessage();
  converter.write(feed, null, outputMessage);
  assertEquals("Invalid content-type", new MediaType("application", "atom+xml", Charset.forName(encoding)),
      outputMessage.getHeaders().getContentType());
}

代码示例来源:origin: rometools/rome

aFeed.setModules(ModuleUtils.cloneModules(syndFeed.getModules()));
aFeed.setEncoding(syndFeed.getEncoding());
aFeed.setStyleSheet(syndFeed.getStyleSheet());

代码示例来源:origin: com.rometools/rome

aFeed.setModules(ModuleUtils.cloneModules(syndFeed.getModules()));
aFeed.setEncoding(syndFeed.getEncoding());
aFeed.setStyleSheet(syndFeed.getStyleSheet());

代码示例来源:origin: rometools/rome

aFeed.setModules(ModuleUtils.cloneModules(syndFeed.getModules()));
aFeed.setEncoding(syndFeed.getEncoding());
aFeed.setStyleSheet(syndFeed.getStyleSheet());

代码示例来源:origin: com.rometools/rome

aFeed.setModules(ModuleUtils.cloneModules(syndFeed.getModules()));
aFeed.setEncoding(syndFeed.getEncoding());
aFeed.setStyleSheet(syndFeed.getStyleSheet());

相关文章