标签:
freemarker十分强大,而且不依赖web容器,个人感觉十分好用。
下面直接进主题,freemarker还有什么特性,请找度娘或谷哥~
一、freemarker生成word
import java.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; import java.io.UnsupportedEncodingException; import java.io.Writer; import java.text.SimpleDateFormat; import java.util.Date; import java.util.HashMap; import java.util.Map; import freemarker.template.Configuration; import freemarker.template.Template; import freemarker.template.TemplateException; /** * 使用freemark生成word * */ public class Freemark { public static void main(String[] args){ Freemark freemark = new Freemark("template/"); freemark.setTemplateName("wordTemplate.ftl"); freemark.setFileName("doc_"+new SimpleDateFormat("yyyy-MM-dd hh-mm-ss").format(new Date())+".doc"); freemark.setFilePath("bin\\doc\\"); //生成word freemark.createWord(); } private void createWord(){ Template t = null; try { //获取模板信息 t = configuration.getTemplate(templateName); } catch (IOException e) { e.printStackTrace(); } File outFile = new File(filePath+fileName); Writer out = null; try { out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile), "UTF-8")); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (FileNotFoundException e) { e.printStackTrace(); } Map map = new HashMap<String, Object>(); map.put("name", "蒙奇·D·路飞"); map.put("country", "日本"); map.put("city", "东京"); map.put("time",new SimpleDateFormat("yyyy-MM-dd hh-mm-ss").format(new Date())); try { //输出数据到模板中,生成文件。 t.process(map, out); out.close(); } catch (TemplateException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } /** * freemark初始化 * @param templatePath 模板文件位置 */ public Freemark(String templatePath) { configuration = new Configuration(); configuration.setDefaultEncoding("utf-8"); configuration.setClassForTemplateLoading(this.getClass(),templatePath); } /** * freemark模板配置 */ private Configuration configuration; /** * freemark模板的名字 */ private String templateName; /** * 生成文件名 */ private String fileName; /** * 生成文件路径 */ private String filePath; public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getFilePath() { return filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } public String getTemplateName() { return templateName; } public void setTemplateName(String templateName) { this.templateName = templateName; } }
标签:
原文地址:http://www.cnblogs.com/dreammyle/p/4615213.html