博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
word导出(使用freemarker模板导出)
阅读量:6423 次
发布时间:2019-06-23

本文共 2398 字,大约阅读时间需要 7 分钟。

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

转载地址:http://uegra.baihongyu.com/

你可能感兴趣的文章
技术助力第三次革命
查看>>
《HTML与CSS入门经典(第8版)》——2.6 总结
查看>>
新手指南:在 Ubuntu 和 Fedora 上安装软件包
查看>>
在 CentOS7.0 上搭建 Chroot 的 Bind DNS 服务器
查看>>
大型网站的 HTTPS 实践(二):HTTPS 对性能的影响
查看>>
《Swift 权威指南》——第6章,第6.10节嵌套函数
查看>>
《自己动手做交互系统》——1.3 本章小结
查看>>
Mobile devices bundled with malware?
查看>>
《JavaScript面向对象精要》——1.5 访问属性
查看>>
《Python数据可视化编程实战》—— 第 1 章 准备工作环境
查看>>
Android应用性能优化最佳实践.1.1 Android Studio的优势
查看>>
《设计模式解析(第2版•修订版)》—第2章 2.2节什么是UML
查看>>
【直播】APP全量混淆和瘦身技术揭秘
查看>>
10个大坑,当你产品上架AppStore会遇到
查看>>
【shell 脚本】两种登录方式
查看>>
学习编程的方法
查看>>
升级linux自带的Python
查看>>
百度地图2.0瓦片地址获取(窗口内瓦片)
查看>>
我的友情链接
查看>>
.JDK1.6安装配置后的测试
查看>>