Java用freemarker導出word

概述

最近一個項目要導出word文檔,折騰老半天,發現仍是用freemarker的模板來搞比較方便省事,現總結一下關鍵步驟,供你們參考,這裏是一個簡單的試卷生成例子。

詳細

最近一個項目要導出word文檔,折騰老半天,發現仍是用freemarker的模板來搞比較方便省事,現總結一下關鍵步驟,供你們參考,這裏是一個簡單的試卷生成例子。html

1、模板的製做

先用Word作一個模板,以下圖:java

(注意,上面是有表格的,我設置了邊框不可見)而後另存爲XML文件,以後用工具打開這個xml文件,有人用firstobject XML Editor感受還不如notepad++,我這裏用notepad++,主要是有高亮顯示,和元素自動配對,效果以下:web

上面黑色的地方基本是咱們以後要替換的地方,好比xytitle替換爲${xytitle},對已表格要十分注意,好比選擇題下面的表格,咱們能夠經過<w:tr>查找來定位,一對<w:tr></w:tr>表明一行,也就是一條記錄(一道題),咱們這裏要用一對<#list></#list>來將其包括,以便後續填充數據,具體可參照Freemarker頁面語法,例如這裏選擇題,咱們是兩行爲一條記錄,因此要<#list></#list>要包括兩行,形如:<#list table1 as plan1><w:tr>題號 題目</w:tr><w:tr>選項</w:tr></#list>,而後在這其中找着對應的xzn,xztest,ans1,ans2,ans3,ans4替換爲${plan1.xzn},${plan1.xztest},${plan1.ans1},${plan1.ans2},${plan1.ans3},${plan1.ans4},注意這裏的table1及plan1命名,table1後續填充數據要用到,其餘的替換同理操做,獲得效果以下:數據庫

保存後,修改後綴名爲ftl,至此模板製做完畢。編程

2、編程實現

這裏用到了freemarker-2.3.13.jar包,代碼以下:eclipse

package common;  
  
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.util.Map;  
  
import freemarker.template.Configuration;  
import freemarker.template.Template;  
import freemarker.template.TemplateException;  
  
public class DocumentHandler {  
  
    private Configuration configuration = null;  
  
    public DocumentHandler() {  
        configuration = new Configuration();  
        configuration.setDefaultEncoding("utf-8");  
    }  
  
    public void createDoc(Map<String,Object> dataMap,String fileName) throws UnsupportedEncodingException {  
        //dataMap 要填入模本的數據文件  
        //設置模本裝置方法和路徑,FreeMarker支持多種模板裝載方法。能夠重servlet,classpath,數據庫裝載,  
        //這裏咱們的模板是放在template包下面  
        configuration.setClassForTemplateLoading(this.getClass(), "/template");  
        Template t=null;  
        try {  
            //test.ftl爲要裝載的模板  
            t = configuration.getTemplate("fctestpaper.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");  
            //這個地方對流的編碼不可或缺,使用main()單獨調用時,應該能夠,可是若是是web請求導出時導出後word文檔就會打不開,而且包XML文件錯誤。主要是編碼格式不正確,沒法解析。  
            //out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile)));  
             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();  
        }  
          
        //System.out.println("---------------------------");  
    }  
}

而後是準備數據調用就行,代碼以下:工具

package com.havenliu.document;  
  
import java.io.UnsupportedEncodingException;  
import java.util.ArrayList;  
import java.util.HashMap;  
import java.util.List;  
import java.util.Map;  
  
public class Main {  
  
    /** 
     * @param args 
     * @throws UnsupportedEncodingException  
     */  
    public static void main(String[] args) throws UnsupportedEncodingException {;  
  
        Map<String, Object> dataMap = new HashMap<String, Object>();  
        dataMap.put("xytitle", "試卷");  
        int index = 1;  
        // 選擇題  
        List<Map<String, Object>> list1 = new ArrayList<Map<String, Object>>();//題目  
        List<Map<String, Object>> list11 = new ArrayList<Map<String, Object>>();//答案  
        index = 1;  
        for (int i = 0; i < 5; i++) {  
  
            Map<String, Object> map = new HashMap<String, Object>();  
            map.put("xzn", index + ".");  
            map.put("xztest",  
                    "(   )操做系統容許在一臺主機上同時鏈接多臺終端,多個用戶能夠經過各自的終端同時交互地使用計算機。");  
            map.put("ans1", "A" + index);  
            map.put("ans2", "B" + index);  
            map.put("ans3", "C" + index);  
            map.put("ans4", "D" + index);  
            list1.add(map);  
  
            Map<String, Object> map1 = new HashMap<String, Object>();  
            map1.put("fuck", index + ".");  
            map1.put("abc", "A" + index);  
            list11.add(map1);  
  
            index++;  
        }  
        dataMap.put("table1", list1);  
        dataMap.put("table11", list11);  
  
        // 填空題  
        List<Map<String, Object>> list2 = new ArrayList<Map<String, Object>>();  
        List<Map<String, Object>> list12 = new ArrayList<Map<String, Object>>();  
        index = 1;  
        for (int i = 0; i < 5; i++) {  
  
            Map<String, Object> map = new HashMap<String, Object>();  
            map.put("tkn", index + ".");  
            map.put("tktest",  
                    "操做系統是計算機系統中的一個___系統軟件_______,它管理和控制計算機系統中的___資源_________.");  
            list2.add(map);  
  
            Map<String, Object> map1 = new HashMap<String, Object>();  
            map1.put("fill", index + ".");  
            map1.put("def", "中級調度" + index);  
            list12.add(map1);  
  
            index++;  
        }  
        dataMap.put("table2", list2);  
        dataMap.put("table12", list12);  
  
        // 判斷題  
        List<Map<String, Object>> list3 = new ArrayList<Map<String, Object>>();  
        List<Map<String, Object>> list13 = new ArrayList<Map<String, Object>>();  
        index = 1;  
        for (int i = 0; i < 5; i++) {  
  
            Map<String, Object> map = new HashMap<String, Object>();  
            map.put("pdn", index + ".");  
            map.put("pdtest",  
                    "複合型防火牆防火牆是內部網與外部網的隔離點,起着監視和隔絕應用層通訊流的做用,同時也常結合過濾器的功能。");  
            list3.add(map);  
  
            Map<String, Object> map1 = new HashMap<String, Object>();  
            map1.put("judge", index + ".");  
            map1.put("hij", "對" + index);  
            list13.add(map1);  
  
            index++;  
        }  
        dataMap.put("table3", list3);  
        dataMap.put("table13", list13);  
  
        // 簡答題  
        List<Map<String, Object>> list4 = new ArrayList<Map<String, Object>>();  
        List<Map<String, Object>> list14 = new ArrayList<Map<String, Object>>();  
        index = 1;  
        for (int i = 0; i < 5; i++) {  
  
            Map<String, Object> map = new HashMap<String, Object>();  
            map.put("jdn", index + ".");  
            map.put("jdtest", "說明做業調度,中級調度和進程調度的區別,並分析下述問題應由哪一級調度程序負責。");  
            list4.add(map);  
  
            Map<String, Object> map1 = new HashMap<String, Object>();  
            map1.put("answer", index + ".");  
            map1.put("xyz", "說明做業調度,中級調度和進程調度的區別,並分析下述問題應由哪一級調度程序負責。");  
            list14.add(map1);  
  
            index++;  
        }  
        dataMap.put("table4", list4);  
        dataMap.put("table14", list14);  
  
        MDoc mdoc = new MDoc();  
        mdoc.createDoc(dataMap, "E:/outFile.doc");  
    }  
  
}

注意上面map中的key必須和模板中的對應,不然會報錯。this

3、項目導入

下載附件後,解壓後,看到以下目錄編碼

image.png

將Document項目導入eclipse便可。導入後的效果以下:spa

image.png

會在e盤生成文件

image.png

4、運行效果

打開生成的outFile.doc則看到以下的樣子:

5、freemarker語法

Freemarker頁面語法:http://blog.csdn.net/thismonth/article/details/5194982

 

注:本文著做權歸做者,由demo大師發表,拒絕轉載,轉載須要做者受權

相關文章
相關標籤/搜索