Java中使用模板引擎+WordXML导出复杂Word的步骤
处理Word文档动态生成,一个绕不开的难题就是如何优雅地融合样式与数据。直接操作Word对象模型(如Apache POI)功能强大,但代码冗长,样式控制也颇为繁琐。今天,我们来探讨一种更为“曲线救国”但极其灵活的方案:利用Word文档的XML本质,结合模板引擎来实现动态填充。
免费影视、动漫、音乐、游戏、小说资源长期稳定更新! 👉 点此立即查看 👈
实现原理
这个方案的核心思路非常巧妙:它利用了Word文档(无论是.doc还是.docx)本质上是一种结构化XML文档的特性。我们不必在代码里费力地调整段落格式、设置字体,而是把这件事交给最擅长的工具——Microsoft Word本身。
- 设计静态模板:首先,在Microsoft Word里精心设计好文档的所有样式、版式和固定内容,保存为Word 2003 XML文档格式(.xml),或者直接使用一个.docx文件(它其实是一个ZIP压缩包,核心内容在
word/document.xml里)。 - 植入动态标记:然后,在这个XML文件里,找到需要插入动态数据的位置,嵌入模板引擎的占位符,比如
${name}、<#list>之类的语法。这里需要小心操作,确保这些标记不会破坏XML本身的结构。 - 引擎渲染数据:在Ja va程序中,读取这个“改装”过的XML文件,把它当作一个FreeMarker或Velocity模板来对待。准备好你的数据模型,让模板引擎完成渲染,动态数据就被填充到占位符的位置了。
- 重新打包输出:最后,将渲染得到的新XML内容,替换回原始的.docx压缩包内的对应文件,或者直接保存为最终的文档格式。一个样式完美、数据新鲜的Word文档就诞生了。
示例步骤(以 FreeMarker + docx 为例)
光说不练假把式,我们来看一个结合FreeMarker和.docx格式的具体操作流程:
- 准备模板:创建一个标准的
.docx文件作为模板,用任何ZIP工具(或直接修改文件后缀为.zip)解压它,找到位于word/目录下的document.xml文件,这就是文档的主体内容。 - 编辑XML:用文本编辑器打开
document.xml,在需要动态填入姓名、日期、列表数据的地方,插入FreeMarker语法。处理时要特别注意转义问题,必要时可以使用CDATA区块来包裹模板语法,以免与XML标签冲突。 - Ja va端渲染:在Ja va代码中,将上一步修改好的
document.xml作为FreeMarker模板文件加载。构建你的数据模型(通常是一个Map),调用模板引擎进行渲染,得到一段填充好数据的XML字符串。 - 替换与打包:将这段新生成的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 "); } }
相关攻略
Composer如何为包添加关键词标签_Composer keywords字段配置说明【入门】 keywords 字段写在哪儿 这个字段的位置非常关键,它必须老老实实地待在项目根目录的 composer json 文件顶层。换句话说,它得和 name、description 这些核心字段平起平坐,绝
宝塔面板如何设置WordPress专属的Nginx伪静态规则 在宝塔面板的网站设置中直接应用预设的伪静态规则,是许多站长快速配置的首选方案。然而实际操作中,即便选择了正确的规则,网站页面依然频繁出现404错误的情况并不少见,这背后往往隐藏着更深层的配置问题。 WordPress 在宝塔面板中必须用哪
处理Word文档动态生成,一个绕不开的难题就是如何优雅地融合样式与数据。直接操作Word对象模型(如Apache POI)功能强大,但代码冗长,样式控制也颇为繁琐。今天,我们来探讨一种更为“曲线救国”但极其灵活的方案:利用Word文档的XML本质,结合模板引擎来实现动态填充。 实现原理 这个方案的核
Composer安装WordPress开发脚手架的正确姿势 如果你打算用Composer管理WordPress,第一步就千万别踩坑。记住,composer require wordpress core 这种命令是行不通的——官方压根就没在Packagist发布过这个包。你真正需要的,其实是一个集成了
SublimeHighlight 插件:从安装到完美粘贴Word的避坑指南 想把Sublime Text里漂亮的代码高亮,原封不动地搬进Word文档?SublimeHighlight插件是很多人的首选。但安装失败、粘贴后中文乱码、颜色变淡……这些坑你踩过几个?下面这份避坑指南,帮你从安装到配置一步到
热门专题
热门推荐
荣耀400 Pro正确关机全指南:从常规操作到故障应对详解 需要关闭您的荣耀400 Pro手机?日常操作其实非常简便。只需长按位于机身右侧的电源键约3秒钟,屏幕上便会浮现一个简洁的半透明菜单,其中明确列出了“关机”、“重启”以及“紧急呼叫”选项。直接点击“关机”,系统将启动一次10秒的安全倒计时,随
红米K30 Pro后盖拆解教程:专业工具与细致手法的完美结合 红米K30 Pro的后盖采用了高强度背胶配合隐藏式螺丝的双重固定设计,想要实现无损拆解,绝非依靠蛮力可以完成。整个操作流程对加热温度、撬启手法以及清洁标准都有严格要求,任何环节的疏忽都可能导致部件损伤。具体而言,其后盖边缘使用了耐高温的工
无需Root权限:三星Galaxy Z Flip系列电量数字显示设置全解析 很多三星折叠屏手机用户都想知道,如何在状态栏直接查看精确的电池百分比数字,是否必须获取Root权限才能实现?实际上完全不需要。三星自Galaxy Z Flip 5、Z Flip 4等主流机型开始,已在系统层面内置了这一实用功
笔记本开机自检信息虽不直接标注“DDR3”或“DDR4”,但联想、戴尔、华硕等品牌BIOS画面常以“PC3-”或“PC4-”编码间接揭示内存代际。UEFI自检显示的内存频率(如2400MHz 3200MHz)结合JEDEC规范可辅助推断:PC3对应DDR3,PC4对应DDR4。更高精度的识别方案包括
空调制冷不足怎么办?先别急着维修压缩机,这些问题更常见 夏天开空调却感觉不够凉爽?很多朋友的第一反应是压缩机坏了,其实压缩机故障的概率相对较低。根据维修行业的大数据统计,绝大多数制冷效果不佳的情况,源于几个容易被忽略的日常维护与环境因素。滤网积尘、制冷剂泄漏、外机散热不良才是真正的高发原因。盲目更换





