Java根据Freemarker XML结构导出Word文件

1、需求
将Word模板中的变量通过程序,替换成自己想要的数据。
在这里插入图片描述
2、准备模板
① 将Word另存为XML文件

在这里插入图片描述
② 打开保存好的XML文件,将Word中的替换变量改成${}的形式
在这里插入图片描述
3、程序生成
① 引入模板引擎依赖

<dependency>
    <groupId>com.quhaodian</groupId>
    <artifactId>freemaker</artifactId>
    <version>1.8.1</version>
</dependency>

② 实现代码

package com.baige;

import java.io.*;
import java.util.Map;
import java.util.HashMap;

import freemarker.template.Template;
import freemarker.template.Configuration;

public class Application {
    public static void main(String[] args) throws Exception {
        Map<String, Object> map = new HashMap<>();
        map.put("name", "小明");
        map.put("age", 12);
        map.put("hobby", "篮球");
        map.put("mobile", "112");

        File file = new File("C:\\Users\\xxx\\Desktop");

        Configuration configuration = new Configuration();
        configuration.setDefaultEncoding("UTF-8");
        configuration.setDirectoryForTemplateLoading(file);

        Template template = configuration.getTemplate("自我介绍.xml","UTF-8");
        File outFile = new File("C:\\Users\\xxx\\Desktop\\生成自我介绍.doc");
        Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile),"UTF-8"));
        template.process(map, out);
    }
}

③ 生成结果
在这里插入图片描述

3、注意:
如果Word生成XML文件之后,使用程序不能为变量设值,还可以使用WPS Office打开Word,重新生成XML文件。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值