亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

freemarker中怎么導出word

發布時間:2021-08-03 11:26:16 來源:億速云 閱讀:179 作者:Leah 欄目:大數據

本篇文章給大家分享的是有關freemarker中怎么導出word,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1.新建word文檔,導出預期如下

freemarker中怎么導出word

2.另存為xml文件

freemarker中怎么導出word

3.編輯xml,將文字替換成表達式 ${argname}

原圖:
freemarker中怎么導出word

替換后 :

freemarker中怎么導出word

年齡、職位、項目、簡述對應的值依次替換成 ${age} ${position} ${project} ${note}

4.修改文件名稱為:ftl2doc.ftl,放到項目里

freemarker中怎么導出word

5.查看pom依賴是否添加若沒有需添加freemarker依賴
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-freemarker</artifactId>
		</dependency>
6.編寫工具類
package org.jeecg.modules.system.util;

import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URLEncoder;
import java.util.Locale;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import freemarker.template.*;

public class FreemarkerUtil {
    private static final Object LOCK = new Object();

    private static Configuration cfg;

    private static FreemarkerUtil ftl ;

    private FreemarkerUtil(File file) throws IOException {
        cfg = new Configuration();
        cfg.setDirectoryForTemplateLoading(file);
        cfg.setEncoding(Locale.getDefault(), "UTF-8");
        cfg.setObjectWrapper(new DefaultObjectWrapper());
    }

    private static void check(File file) {
        if (ftl == null) {
            synchronized (LOCK) {
                try {
                    ftl = new FreemarkerUtil(file);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }


    /**
     * 創建 word 文檔
     * 必須先設置response導出配置,然后解析模版,否則會出問題
     * @throws IOException
     */
    public static void createFile(File templateDir,String templateName,String docFileName, Map<String,Object> rootMap,HttpServletRequest request, HttpServletResponse response) throws IOException {
        //  	response.resetBuffer();
        //設置導出
        response.addHeader("Cache-Control","no-cache");
        response.setCharacterEncoding("UTF-8");
        response.setContentType("application/vnd.ms-word;charset=UTF-8");
        String ua = request.getHeader("user-agent");
        ua = ua == null ? null : ua.toLowerCase();
        if(ua != null && (ua.indexOf("firefox") > 0 || ua.indexOf("safari")>0)){
            try {
                docFileName = new String(docFileName.getBytes(),"ISO8859-1");
                response.addHeader("Content-Disposition","attachment;filename=" + docFileName);
            } catch (Exception e) {
            }
        }else{
            try {
                docFileName = URLEncoder.encode(docFileName, "utf-8");
                response.addHeader("Content-Disposition","attachment;filename=" + docFileName);
            } catch (Exception e) {
            }
        }
        check(templateDir);
        //解析模版
        Template temp = cfg.getTemplate(templateName, "UTF-8");
        PrintWriter write = response.getWriter();
        try {
            temp.process(rootMap, write);
        } catch (TemplateException e) {
            e.printStackTrace();
        }finally {
            if(write != null){
                write.flush();
                write.close();
            }
        }
    }
}

7.測試接口

    @Resource
    private ResourceLoader resourceLoader;
    @GetMapping(value = "/wordTest")
    public void wordTest(HttpServletRequest req,HttpServletResponse resp){
        String path = "templates/word";
        org.springframework.core.io.Resource resource = resourceLoader.getResource("classpath:"+path);
        try {
            File file = resource.getFile();
            Map<String,Object> map = new HashMap<String,Object>();
	    //這里map的key和上面模板內的${key}保持一致即可
            map.put("name", "劉禹錫");
            map.put("age", 26);
            map.put("position", "php開發");
            map.put("project", "不動產登記項目");
            map.put("note", "php是世界上最好的語言!!!");
            String docFileName ="word-模板導出測試.doc";
            String templateName = "ftl2doc.ftl";
            FreemarkerUtil.createFile(file,templateName,docFileName, map, req, resp);
        } catch (IOException e) {
            e.printStackTrace();
        }

    }

測試結果導出文件如下:
freemarker中怎么導出word

以上就是freemarker中怎么導出word,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

防城港市| 黔西县| 廊坊市| 惠安县| 巴塘县| 枣阳市| 比如县| 承德市| 罗定市| 青田县| 会泽县| 汾西县| 高平市| 宁波市| 子洲县| 高邮市| 栾川县| 本溪| 黑河市| 大埔县| 雷州市| 六盘水市| 通辽市| 敦化市| 衡阳市| 金山区| 汶上县| 合肥市| 陈巴尔虎旗| 尖扎县| 巴南区| 南汇区| 嘉义市| 新野县| 新巴尔虎右旗| 桐柏县| 夏津县| 东明县| 泾源县| 武安市| 定边县|