91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

巩留县| 凤阳县| 渝北区| 鄱阳县| 新疆| 化隆| 同德县| 大兴区| 凤山县| 谷城县| 满洲里市| 太康县| 穆棱市| 九龙坡区| 张家港市| 万荣县| 涟源市| 库尔勒市| 遂川县| 应用必备| 达孜县| 惠安县| 白水县| 双鸭山市| 江川县| 瑞金市| 阳谷县| 治县。| 大关县| 湘潭县| 鸡西市| 武乡县| 山丹县| 神木县| 全州县| 全椒县| 泊头市| 韩城市| 遂川县| 克拉玛依市| 屯昌县|