继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

java导出word文档 案例

更为炙热
关注TA
已关注
手记 3
粉丝 2
获赞 68

进行Javaweb文件导出为Word文档,使用freemarker时需要导入freemarker.jar。需要建立一个新的Word模板,填写处用${内容那么}代替。详细见http://blog.csdn.net/zhanwentao2/article/details/7255432/。
Java代码:
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.Writer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;
public class WordTest {

 private Configuration configuration = null;  

    public WordTest(){  
        configuration = new Configuration();  
        configuration.setDefaultEncoding("UTF-8");  
    }  

    public static void main(String[] args) {  
        WordTest test = new WordTest();  
        test.createWord();  
    }  

    public void createWord(){  
        Map<String,Object> dataMap=new HashMap<String,Object>();  
        getData(dataMap);  
        configuration.setClassForTemplateLoading(this.getClass(), "/com");  //FTL文件所存在的位置  
        Template t=null;  
        try {  
            t = configuration.getTemplate("wordModel.ftl"); //文件名  
        } catch (IOException e) {  
            e.printStackTrace();  
        }  
        File outFile = new File("O:/outFilessa"+Math.random()*10000+".doc");  
        Writer out = null;  
        try {  
            out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile)));  
        } catch (FileNotFoundException e1) {  
            e1.printStackTrace();  
        }  

        try {  
            t.process(dataMap, out);  
        } catch (TemplateException e) {  
            e.printStackTrace();  
        } catch (IOException e) {  
            e.printStackTrace();  
        }  
    }  

    private void getData(Map<String, Object> dataMap) {  
        dataMap.put("title", "标题");  
        dataMap.put("year", "2012");  
        dataMap.put("month", "2");  
        dataMap.put("day", "13");  
        dataMap.put("auditor", "唐鑫");  
        dataMap.put("phone", "13020265912");  
        dataMap.put("weave", "占文涛");  

// dataMap.put("number", 1);
// dataMap.put("content", "内容"+2);

        List<Map<String,Object>> list = new ArrayList<Map<String,Object>>();  
        for (int i = 0; i < 10; i++) {  
            Map<String,Object> map = new HashMap<String,Object>();  
            map.put("number", i);  
            map.put("content", "内容"+i);  
            list.add(map);  
        }  

        dataMap.put("list", list);  
    }

}

打开App,阅读手记
4人推荐
发表评论
随时随地看视频慕课网APP

热门评论

你好  我这个报错 Template wordModel.ftl not found.   就是wordModel.ftl这个东西是在哪阿...  求教

configuration.setClassForTemplateLoading(this.getClass(), "/com");

这是ftl文件所在位置,具体是什么啊

查看全部评论