freemarker编码设置_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > freemarker编码设置

freemarker编码设置

 2014/4/1 21:15:24  krs  程序员俱乐部  我要评论(0)
  • 摘要:Configurationcfg=newConfiguration();cfg.setDefaultEncoding("UTF-8");......Templatetemplate=cfg.getTemplate(templateFileName);template.setEncoding("UTF-8");creatDirs(buildPath.getFilename(),htmlFilePath);FilehtmlFile=newFile
  • 标签:编码
class="java" name="code">Configuration cfg = new Configuration();
cfg.setDefaultEncoding("UTF-8");
......
Template template = cfg.getTemplate(templateFileName);
template.setEncoding("UTF-8");
creatDirs(buildPath.getFilename(),htmlFilePath);
File htmlFile = new File(buildPath + htmlFilePath + htmlFileName);
Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(htmlFile),"UTF-8"));
template.process(propMap,out);
out.flush();

?

发表评论
用户名: 匿名