本文整理汇总了Java中freemarker.template.Configuration.setEncoding方法的典型用法代码示例。如果您正苦于以下问题:Java Configuration.setEncoding方法的具体用法?Java Configuration.setEncoding怎么用?Java Configuration.setEncoding使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类freemarker.template.Configuration
的用法示例。
在下文中一共展示了Configuration.setEncoding方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: crateHTML
import freemarker.template.Configuration; //导入方法依赖的package包/类
/**
* 生成静态页面主方法
*
* @param context
* ServletContext
* @param data
* 一个Map的数据结果集
* @param templatePath
* ftl模版路径
* @param targetHtmlPath
* 生成静态页面的路径
*/
public static void crateHTML(ServletContext context, Object data, String templatePath, String targetHtmlPath) {
Configuration freemarkerCfg = new Configuration();
// 加载模版
freemarkerCfg.setServletContextForTemplateLoading(context, "/");
freemarkerCfg.setEncoding(Locale.getDefault(), "UTF-8");
try {
// 指定模版路径
Template template = freemarkerCfg.getTemplate(templatePath, "UTF-8");
template.setEncoding("UTF-8");
// 静态页面路径
String htmlPathString = context.getRealPath("/") + "/" + targetHtmlPath;
File htmlFile = new File(htmlPathString);
if (!htmlFile.getParentFile().exists()) {
htmlFile.getParentFile().mkdirs();
}
htmlFile.createNewFile();
Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(htmlFile), "UTF-8"));
// 处理模版
template.process(data, out);
out.flush();
out.close();
} catch (Exception e) {
logger.error("error occured where generate Html file.", e);
}
}
示例2: getTemplate
import freemarker.template.Configuration; //导入方法依赖的package包/类
protected Template getTemplate(String tmplFileName)
throws IOException {
Configuration cfg = new Configuration();
cfg.setEncoding(DEFAULT_LOCALE, DEFAULT_ENCODING);
this.logger.debug("reading ftl " + tmplFileName
+ " from class path " + freemarkerTemplateDefaultFilePath);
cfg.setClassForTemplateLoading(this.getClass(),
freemarkerTemplateDefaultFilePath);
Template tmpl = cfg.getTemplate(tmplFileName);
tmpl.setEncoding(DEFAULT_ENCODING);
return tmpl;
}
示例3: generateTemplateContent
import freemarker.template.Configuration; //导入方法依赖的package包/类
public void generateTemplateContent(String templateName, Map<String, Object> templateObject, String fileName) throws IOException, TemplateException {
if (templateObject == null || templateObject.size() == 0)
return;
// 读取模板并设置模板内容
Configuration configuration = new Configuration();
configuration.setTemplateLoader(new ClassTemplateLoader(this.getClass(), "/template/autocode"));
configuration.setEncoding(Locale.CHINA, "UTF-8");
Template template = configuration.getTemplate(templateName);
OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(fileName), "UTF-8");
template.process(templateObject, writer);
}
示例4: init
import freemarker.template.Configuration; //导入方法依赖的package包/类
public void init(){
configuration = new Configuration();
configuration.setTemplateLoader(new ClassTemplateLoader(FreemarkerEmailTemplateService.class, TEMPLATE_PATH));
configuration.setEncoding(Locale.getDefault(), "UTF-8");
configuration.setDateFormat("yyyy-MM-dd HH:mm:ss");
}