word导出(使用freemarker模板导出)

简介:

package com.shangyukeji.chuangke.controller;


import java.io.BufferedWriter;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.UnsupportedEncodingException;

import java.io.Writer;

import java.util.HashMap;

import java.util.Map;

import com.jfinal.plugin.activerecord.Db;

import com.jfinal.plugin.activerecord.Record;



import freemarker.template.Configuration;

import freemarker.template.DefaultObjectWrapper;

import freemarker.template.Template;

import freemarker.template.TemplateException;

import freemarker.template.TemplateExceptionHandler;


public class DocumentHandler {

private Configuration configuration = null;  

private static String filepath = PropKit.use("config.properties").get("file.path"); 

    public DocumentHandler() {  

        configuration = new Configuration();  

        configuration.setDefaultEncoding("utf-8");  

    }  

    public void createDoc(Map<String,Object> dataMap,String fileName) throws UnsupportedEncodingException {  

     Configuration configuration = new Configuration();  

        Template t=null;  

        try { 

          configuration.setDirectoryForTemplateLoading(new File("D:\\code"));  

           configuration.setDefaultEncoding("utf-8");  

           configuration.setObjectWrapper(new DefaultObjectWrapper());       

             configuration.setTemplateExceptionHandler(TemplateExceptionHandler.IGNORE_HANDLER);       

             t = configuration.getTemplate("1-1.ftl");  

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

        

        File outFile = new File(fileName);  

        Writer out = null;  

        FileOutputStream fos=null;  

        try {  

            fos = new FileOutputStream(outFile);  

            OutputStreamWriter oWriter = new OutputStreamWriter(fos,"UTF-8");  

             out = new BufferedWriter(oWriter);   

        } catch (FileNotFoundException e1) {  

            e1.printStackTrace();  

        }  

        try {  

            t.process(dataMap, out);  

            out.close();  

            fos.close();  

        } catch (TemplateException e) {  

            e.printStackTrace();  

        } catch (IOException e) {  

            e.printStackTrace();  

        }  

    } 

    

    public static void downloadWord(String id) throws UnsupportedEncodingException{

     DocumentHandler mdoc = new DocumentHandler();  

Map<String, Object> dataMap = new HashMap<String, Object>();

     dataMap.put("aa", " ");

     dataMap.put("bb", " ");

     dataMap.put("cc", " ");

     dataMap.put("dd", " ");

     dataMap.put("ee", " ");

     dataMap.put("ff", " "); 

     mdoc.createDoc(dataMap, "c:/合同协议.doc");

    }

}

//模板**.xml或者**.ftl都应放在D:\\code文件夹下面(此文件可以随便定义,可以放置任何盘下),生成的文件'合同协议.doc'可以放置任何盘下,可以根据个人不同需要随意改动



本文转自 沉淀人生 51CTO博客,原文链接:http://blog.51cto.com/825272560/1854977

相关文章
|
7月前
|
Java
Springboot 导出word,动态填充表格数据
Springboot 导出word,动态填充表格数据
|
7月前
|
XML Java 数据格式
使用Freemarker模版导出xls文件使用excel打开提示文件损坏
使用Freemarker模版导出xls文件使用excel打开提示文件损坏
172 0
|
Java Maven
从 HTML 模板导出 PDF 文件
学习如何使用 Thymeleaf 和 Flying Saucer PDF 库从 HTML 模板文件中导出 .pdf 文件
692 0
|
2月前
|
Java BI API
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
这篇文章介绍了如何在Spring Boot项目中整合iTextPDF库来导出PDF文件,包括写入大文本和HTML代码,并分析了几种常用的Java PDF导出工具。
558 0
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
|
7月前
|
数据采集 移动开发 前端开发
springboot使用html模版导出pdf文档
springboot使用html模版导出pdf文档
|
XML 数据格式
Freemarker填充数据到word模板中
Freemarker填充数据到word模板中
131 1
|
JavaScript 数据安全/隐私保护
VUE 表格导出PDF格式
VUE 表格导出PDF格式
243 0
|
Java Maven
使用EasyPOI导出复杂的Word表格
使用EasyPOI导出复杂的Word表格
3577 0
使用EasyPOI导出复杂的Word表格
|
XML 数据格式
使用freemarker模板导出word文档
使用freemarker模板导出word文档
472 0
使用freemarker模板导出word文档