您的位置:首页 >Java中使用模板引擎+WordXML导出复杂Word的步骤
发布于2026-05-03 阅读(0)
扫一扫,手机访问
处理Word文档动态生成,一个绕不开的难题就是如何优雅地融合样式与数据。直接操作Word对象模型(如Apache POI)功能强大,但代码冗长,样式控制也颇为繁琐。今天,我们来探讨一种更为“曲线救国”但极其灵活的方案:利用Word文档的XML本质,结合模板引擎来实现动态填充。
这个方案的核心思路非常巧妙:它利用了Word文档(无论是.doc还是.docx)本质上是一种结构化XML文档的特性。我们不必在代码里费力地调整段落格式、设置字体,而是把这件事交给最擅长的工具——Microsoft Word本身。
word/document.xml里)。${name}、<#list>之类的语法。这里需要小心操作,确保这些标记不会破坏XML本身的结构。光说不练假把式,我们来看一个结合FreeMarker和.docx格式的具体操作流程:
.docx文件作为模板,用任何ZIP工具(或直接修改文件后缀为.zip)解压它,找到位于word/目录下的document.xml文件,这就是文档的主体内容。document.xml,在需要动态填入姓名、日期、列表数据的地方,插入FreeMarker语法。处理时要特别注意转义问题,必要时可以使用CDATA区块来包裹模板语法,以免与XML标签冲突。document.xml作为FreeMarker模板文件加载。构建你的数据模型(通常是一个Map),调用模板引擎进行渲染,得到一段填充好数据的XML字符串。document.xml文件中,然后将整个文件夹重新打包成.zip格式,再把文件后缀改回.docx。当然,这个过程可以通过程序自动化完成。// BeanUtil使用的是Hutool中的工具类 MapdataMap = 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 "); } }
上一篇:centos php环境搭建
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
正版软件
正版软件
正版软件
正版软件
正版软件
1
2
3
7
9