作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我将模板保存为某处的字符串,我想用它来创建 mustache 。我怎样才能做到这一点?还是可行?
最佳答案
这是我找到的方法:
private String renderMustacheContent() throws IOException {
MustacheFactory mf = new DefaultMustacheFactory();
Mustache mustache;
if (type.getTemplate().trim().isEmpty()) {
String emailContent = genCpuEmailContent(cmsKey);
mustache = mf.compile(new StringReader(emailContent), "cpu.template.email");
} else {
mustache = mf.compile(type.getTemplate());
}
StringWriter writer = new StringWriter();
mustache.execute(writer, values).flush();
return writer.toString();
}
因此,基本上当您只想从字符串模板而不是文件呈现电子邮件时,只需使用模板创建新的 StringReader。
关于java - 如何在不使用文件的情况下创建 mustache ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17199202/
我是一名优秀的程序员,十分优秀!