Java实现创建word文档模板,根据模板导出word文档

效果展示:

1.模板
在这里插入图片描述
2.实现效果:
在这里插入图片描述

实现过程:

前提准备

  1. 准备一个word文档,按照需求写导出模板。
  2. 把写好的模板另存为一个xml文件
    在这里插入图片描述
  3. 修改xml文件的后缀为.ftl,例如test.xml—>test.ftl
  4. 打开.ftl文件,超级混乱的文件,可以使用 在线格式化工具格式话,然后找到文档对应{id}等自定义部分,最后删除这一部分如图一,最后删除完格式如图二:
    在这里插入图片描述
    在这里插入图片描述

代码部分

1. 导入依赖

	<!--导出word-->
       <dependency>
           <groupId>fr.opensagres.xdocreport</groupId>
           <artifactId>fr.opensagres.xdocreport.template.freemarker</artifactId>
           <version>2.0.2</version>
       </dependency>

2.代码实现

注意不要导错jar包。

import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.Version;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.text.SimpleDateFormat;
import java.util.HashMap;
import java.util.Map;

/**
 * @author lenovo
 */
@RestController
@RequestMapping("/word")
public class WordController {


    @GetMapping("/export1")
    public void export1(HttpServletRequest request, HttpServletResponse response) throws Exception {
        try {
            Map<String, Object> dataMap = new HashMap<String, Object>();
            //编号
            dataMap.put("id", "123456");
            //日期
            dataMap.put("date", new SimpleDateFormat("yyyy年MM月dd日").format(new SimpleDateFormat("yyyy-MM-dd").parse("2018-09-19")));
            //附件张数
            dataMap.put("number", 1);
            //受款人
            dataMap.put("payee", "张三");
            //付款用途
            dataMap.put("use_of_payment", "test");
            //大写金额
            dataMap.put("capitalization_amount", "200.00");
            //小写金额
            dataMap.put("lowercase_amount", "100");
            //Configuration 用于读取ftl文件
            Configuration configuration = new Configuration(new Version("2.3.0"));
            configuration.setDefaultEncoding("utf-8");
            //指定路径的第二种方式,我的路径是F:/test.ftl
            configuration.setDirectoryForTemplateLoading(new File("F:/"));//ftl文件目录
            //输出文档路径及名称
            File outFile = new File("F:\\受益人信息.doc");
            //以utf-8的编码读取ftl文件
            Template template = configuration.getTemplate("test.ftl", "utf-8");
            Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile), "utf-8"), 10240);
            template.process(dataMap, out);
            out.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

}

添加图片到word

添加本地图片到word

  1. 新建一个word文档, 在要插入图片的地方随便插入一张图片
    在这里插入图片描述
  2. 将word另存为xml
  3. 将xml扩展名改为ftl
  4. 打开ftl文件, 搜索w:binData 或者 png可以快速定位图片的位置,图片 已经编码成0-Z的字符串了,修改成如下:
    <w:binData w:name=“wordml://1.png”>${img}</w:binData>
  5. 记得在代码中添加:
 Map<String,String> dataMap = new HashMap<String,String>();  
 dataMap.put("img", getImageStr("F:\\Desktop\\图库\\linux.png"));
  
  1. getImageStr(String imgFile)方法。
/**
     * 本地图片地址
     * @param imgFile 本地图片地址
     * @return
     */
    public String getImageStr(String imgFile) {
        InputStream in = null;
        byte[] data = null;
        try {
            in = new FileInputStream(imgFile);
            data = new byte[in.available()];
            in.read(data);
            in.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        BASE64Encoder encoder = new BASE64Encoder();
        return encoder.encode(data);
    }

添加网络图片到word

其他不变,修改

dataMap.put("img", getImageStr("网络图片url"));

添加方法

/**
     * 网络图片地址
     * @param imgFile
     * @return
     */
    public String getImageStr(String imgFile) {
        InputStream in = null;
        byte[] data = null;
        try {
            in = getInput(imgFile);
            data = new byte[in.available()];
            in.read(data);
            in.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        BASE64Encoder encoder = new BASE64Encoder();
        return encoder.encode(data);
    }

    /**
     * 网络图片转inputStream
     * @param picUrl
     * @return
     * @throws IOException
     */
    public static InputStream getInput(String picUrl) {
        InputStream inputStream=null;
        HttpURLConnection connection=null;
        try {
            URL url = new URL(picUrl);
            if (url!=null){
                connection= (HttpURLConnection) url.openConnection();
                connection.setConnectTimeout(10000);
                connection.setDoInput(true);
                connection.setRequestMethod("GET");
                int responseCode = connection.getResponseCode();
                if (responseCode==200){
                    inputStream = connection.getInputStream();
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return inputStream;
    }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

XuDream

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值