商城首页欢迎来到中国正版软件门户

您的位置:首页 >Java中使用模板引擎+WordXML导出复杂Word的步骤

Java中使用模板引擎+WordXML导出复杂Word的步骤

  发布于2026-05-03 阅读(0)

扫一扫,手机访问

处理Word文档动态生成,一个绕不开的难题就是如何优雅地融合样式与数据。直接操作Word对象模型(如Apache POI)功能强大,但代码冗长,样式控制也颇为繁琐。今天,我们来探讨一种更为“曲线救国”但极其灵活的方案:利用Word文档的XML本质,结合模板引擎来实现动态填充。

实现原理

这个方案的核心思路非常巧妙:它利用了Word文档(无论是.doc还是.docx)本质上是一种结构化XML文档的特性。我们不必在代码里费力地调整段落格式、设置字体,而是把这件事交给最擅长的工具——Microsoft Word本身。

  1. 设计静态模板:首先,在Microsoft Word里精心设计好文档的所有样式、版式和固定内容,保存为Word 2003 XML文档格式(.xml),或者直接使用一个.docx文件(它其实是一个ZIP压缩包,核心内容在word/document.xml里)。
  2. 植入动态标记:然后,在这个XML文件里,找到需要插入动态数据的位置,嵌入模板引擎的占位符,比如${name}<#list>之类的语法。这里需要小心操作,确保这些标记不会破坏XML本身的结构。
  3. 引擎渲染数据:在Ja va程序中,读取这个“改装”过的XML文件,把它当作一个FreeMarker或Velocity模板来对待。准备好你的数据模型,让模板引擎完成渲染,动态数据就被填充到占位符的位置了。
  4. 重新打包输出:最后,将渲染得到的新XML内容,替换回原始的.docx压缩包内的对应文件,或者直接保存为最终的文档格式。一个样式完美、数据新鲜的Word文档就诞生了。

示例步骤(以 FreeMarker + docx 为例)

光说不练假把式,我们来看一个结合FreeMarker和.docx格式的具体操作流程:

  1. 准备模板:创建一个标准的.docx文件作为模板,用任何ZIP工具(或直接修改文件后缀为.zip)解压它,找到位于word/目录下的document.xml文件,这就是文档的主体内容。
  2. 编辑XML:用文本编辑器打开document.xml,在需要动态填入姓名、日期、列表数据的地方,插入FreeMarker语法。处理时要特别注意转义问题,必要时可以使用CDATA区块来包裹模板语法,以免与XML标签冲突。
  3. Ja va端渲染:在Ja va代码中,将上一步修改好的document.xml作为FreeMarker模板文件加载。构建你的数据模型(通常是一个Map),调用模板引擎进行渲染,得到一段填充好数据的XML字符串。
  4. 替换与打包:将这段新生成的XML字符串,写回之前解压的document.xml文件中,然后将整个文件夹重新打包成.zip格式,再把文件后缀改回.docx。当然,这个过程可以通过程序自动化完成。
// BeanUtil使用的是Hutool中的工具类
Map dataMap = BeanUtil.beanToMap(report);

try {
    // 1. 创建 FreeMarker 配置
    Configuration cfg = new Configuration(Configuration.VERSION_2_3_31);
    // 模板所在目录
    cfg.setDirectoryForTemplateLoading(new File(templateDir));
    cfg.setDefaultEncoding("UTF-8");
    cfg.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
    cfg.setLogTemplateExceptions(false);
    cfg.setWrapUncheckedExceptions(true);
    cfg.setFallbackOnNullLoopVariable(false);

    // 2. 加载模板(已按上述要求修改的 XML 文件)
    Template template = cfg.getTemplate(templatePath);

    // 4. 渲染模板
    try (Writer out = new BufferedWriter(new OutputStreamWriter(
            new FileOutputStream(templateOutputPath), StandardCharsets.UTF_8))) {
        template.process(dataMap, out);
        response.setContentType("application/vnd.openxmlformats-officedocument.wordprocessingml.document");
        String fileName = report.getUnitName() + "年度自评报告.docx";
        String encodedFileName = URLEncoder.encode(fileName, StandardCharsets.UTF_8.toString()).replace("+", "%20");
        response.setHeader("Content-Disposition", "attachment; filename*=UTF-8''" + encodedFileName);

        // yaml配置示例
        //yearSelfEvaluation:
        //  # 模板目录
        //  templateDir: G:\\templates
        //  # 模板路径
        //  templatePath: template\\word\\document.xml
        //  # 输出路径
        //  templateOutputPath: G:\\templates\\output2.xml
        //  # 模板docx路径
        //  templateDocxPath: G:\\templates\\template.docx

        // 调用工具类,将渲染后的XML打包成docx并通过response输出
        XmlToDocx.convert(templateDocxPath, templateOutputPath, response);
    }
} catch (Exception e) {
    log.error("渲染模板失败", e);
}



// 以下是关键的 XmlToDocx 工具类实现
import ja vax.servlet.http.HttpServletResponse;
import ja va.io.*;
import ja va.nio.charset.StandardCharsets;
import ja va.nio.file.Files;
import ja va.nio.file.Path;
import ja va.nio.file.Paths;
import ja va.util.zip.ZipEntry;
import ja va.util.zip.ZipInputStream;
import ja va.util.zip.ZipOutputStream;

public class XmlToDocx {

    /**
     * 将渲染后的 Word 2003 XML 文件内容替换到 docx 模板中,并将生成的 docx 写入 HttpServletResponse 输出流
     * @param docxTemplate    原始的 docx 模板路径(由 XML 另存得来)
     * @param renderedXmlPath 渲染后的 XML 文件路径
     * @param response        HttpServletResponse 对象,用于输出 docx
     */
    public static void convert(String docxTemplate, String renderedXmlPath, HttpServletResponse response) throws IOException {
        // 读取渲染后的 XML 文件内容(Ja va 8 兼容)
        Path xmlPath = Paths.get(renderedXmlPath);
        byte[] xmlBytes = Files.readAllBytes(xmlPath);
        String renderedXml = new String(xmlBytes, StandardCharsets.UTF_8);

        // 创建临时目录存放解压后的文件
        Path tempDir = Files.createTempDirectory("docx");
        try (ZipInputStream zis = new ZipInputStream(new FileInputStream(docxTemplate))) {
            ZipEntry entry;
            while ((entry = zis.getNextEntry()) != null) {
                File outFile = new File(tempDir.toFile(), entry.getName());
                if (entry.isDirectory()) {
                    outFile.mkdirs();
                } else {
                    outFile.getParentFile().mkdirs();
                    try (FileOutputStream fos = new FileOutputStream(outFile)) {
                        byte[] buffer = new byte[8192];
                        int len;
                        while ((len = zis.read(buffer)) != -1) {
                            fos.write(buffer, 0, len);
                        }
                    }
                }
                zis.closeEntry();
            }
        }

        // 替换 document.xml
        Path docXmlPath = tempDir.resolve("word/document.xml");
        Files.write(docXmlPath, renderedXml.getBytes(StandardCharsets.UTF_8));

        // 重新打包为 docx 并直接写入 response 输出流
        try (ZipOutputStream zos = new ZipOutputStream(response.getOutputStream())) {
            Files.walk(tempDir).forEach(path -> {
                if (Files.isRegularFile(path)) {
                    String entryName = tempDir.relativize(path).toString().replace('\\', '/');
                    try {
                        zos.putNextEntry(new ZipEntry(entryName));
                        Files.copy(path, zos);
                        zos.closeEntry();
                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
                }
            });
            zos.finish(); // 确保 ZIP 文件正确结束
        } finally {
            // 清理临时目录
            Files.walk(tempDir)
                    .map(Path::toFile)
                    .forEach(File::delete);
        }
    }

    /**
     * 将渲染后的 Word 2003 XML 文件内容替换到 docx 模板中,生成最终的 docx 文件
     * @param docxTemplate    原始的 docx 模板路径(由 XML 另存得来)
     * @param renderedXmlPath 渲染后的 XML 文件路径
     * @param outputDocx      输出 docx 文件路径
     */
    public static void convert(String docxTemplate, String renderedXmlPath, String outputDocx) throws IOException {
        // 读取渲染后的 XML 文件内容(Ja va 8 兼容)
        Path xmlPath = Paths.get(renderedXmlPath);
        byte[] xmlBytes = Files.readAllBytes(xmlPath);
        String renderedXml = new String(xmlBytes, StandardCharsets.UTF_8);

        // 创建临时目录存放解压后的文件
        Path tempDir = Files.createTempDirectory("docx");
        try (ZipInputStream zis = new ZipInputStream(new FileInputStream(docxTemplate))) {
            ZipEntry entry;
            while ((entry = zis.getNextEntry()) != null) {
                File outFile = new File(tempDir.toFile(), entry.getName());
                if (entry.isDirectory()) {
                    outFile.mkdirs();
                } else {
                    outFile.getParentFile().mkdirs();
                    try (FileOutputStream fos = new FileOutputStream(outFile)) {
                        byte[] buffer = new byte[8192];
                        int len;
                        while ((len = zis.read(buffer)) != -1) {
                            fos.write(buffer, 0, len);
                        }
                    }
                }
                zis.closeEntry();
            }
        }

        // 替换 document.xml
        Path docXmlPath = tempDir.resolve("word/document.xml");
        Files.write(docXmlPath, renderedXml.getBytes(StandardCharsets.UTF_8));

        // 重新打包为 docx
        try (ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(outputDocx))) {
            Files.walk(tempDir).forEach(path -> {
                if (Files.isRegularFile(path)) {
                    String entryName = tempDir.relativize(path).toString().replace('\\', '/');
                    try {
                        zos.putNextEntry(new ZipEntry(entryName));
                        Files.copy(path, zos);
                        zos.closeEntry();
                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
                }
            });
        } finally {
            // 清理临时目录
            Files.walk(tempDir)
                 .map(Path::toFile)
                 .forEach(File::delete);
        }
    }

    public static void main(String[] args) throws IOException {
        convert("G:\\templates\\template.docx", "G:\\templates\\output2.xml", "F:\\test2.docx");
        System.out.println("docx 文件已生成, haha ");
    }
}
本文转载于:https://www.jb51.net/program/362217okn.htm 如有侵犯,请联系zhengruancom@outlook.com删除。
免责声明:正软商城发布此文仅为传递信息,不代表正软商城认同其观点或证实其描述。

热门关注