我的编程空间,编程开发者的网络收藏夹
学习永远不晚

java用模板生成word(docx)文档(含动态表格)

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

java用模板生成word(docx)文档(含动态表格)

生成word思路

用WPS或者office编辑好word的样式,然后另存为word xml文档,将xml翻译为FreeMarker模板,最后用java来解析FreeMarker模板并输出Docx。

编辑好需要使用的word文档

把需要注入的信息换成变量名称,比如几年几月用${d1}表示,全部替换后的格式如下图所示

 对于表头的话最好设置成每页都自动生成表头

替换完成后另存为word xml格式的文档,如下图

 3、使用文本编辑器打开

xml格式化

https://c.runoob.com/front-end/710/

 5、选定表格的动态生成范围,添加 list 标签,记得保存

<#list TestList as item>

 6、把改好的XML文件存放到项目的resources文件夹下,(我这里模板比较多,就自己建了一个word文件夹)

 7,导入依赖

    org.freemarker    freemarker    2.3.30    e-iceblue    spire.doc.free    2.7.3

 spire.doc.free这个依赖要在maven的setting配置加个仓库

      
      e-iceblue
      https://repo.e-iceblue.cn/repository/maven-public/
      

 8,编写代码

control类

@GetMapping("/word02")public void getWord02() throws Exception {    //市级开卡数据    ArrayList> list = new ArrayList<>();    for (int i = 0; i < 3; i++) {        HashMap map = new HashMap<>();        int a = i + 1;        String s = Integer.toString(a);        map.put("t1", s);        map.put("t2", "666666");        map.put("t3", "6666");        map.put("t4", "66");        map.put("t5", "6666");        map.put("t6", "6666");        map.put("t7", "66666666");        list.add(map);    }    Map params = new HashMap<>();    params.put("d1", "10月");    params.put("d2", "666666");    params.put("p1", "6666");    params.put("p2", "6666");    params.put("p3", "222211");    params.put("TestList", list);    Integer templateFileNumber = 2;    WordUtil.createWord(params,templateFileNumber);}

导出word工具类

    private static String createWord(Map params, Integer templateFileNumber) throws IOException {        String templateFile = null;        //指定模板        if (templateFileNumber == 1) {            templateFile = "啊啊啊.xml";        }        if (templateFileNumber == 2) {            templateFile = "哦哦哦.xml";        }        if (templateFileNumber == 3) {            templateFile = "嗯嗯嗯.xml";        }        File file = null, templateFile1 = null;        FileOutputStream fileOutputStream = null;        Writer out = null;        InputStream inputStream = null;        try {            //指定模板存放位置            ClassPathResource tempFileResource = new ClassPathResource("word/" + templateFile);            //创建临时文件            file = File.createTempFile(templateFile, ".docx");            //得到临时文件全路径  ,作为word生成的输出全路径使用            String outputDir = file.getAbsolutePath();            log.info("创建临时文件的路径为:{}", outputDir);            //创建模板临时文件            templateFile1 = File.createTempFile(templateFile, ".xml");            fileOutputStream = new FileOutputStream(templateFile1);            inputStream = tempFileResource.getInputStream();            IOUtils.copy(inputStream, fileOutputStream);            //得到临时模板文件全路径            String templateFilePath = templateFile1.getAbsolutePath();            log.info("创建临时文件的路径为:{}", templateFilePath);//           new ClassPathResource("aaa").getInputStream().close();            // 设置FreeMarker的版本和编码格式            Configuration configuration = new Configuration();            configuration.setDefaultEncoding("UTF-8");            // 设置FreeMarker生成Word文档所需要的模板的路径            configuration.setDirectoryForTemplateLoading(templateFile1.getParentFile());            // 设置FreeMarker生成Word文档所需要的模板            Template t = configuration.getTemplate(templateFile1.getName(), "UTF-8");            // 创建一个Word文档的输出流            out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(new File(outputDir)), "UTF-8"));            //FreeMarker使用Word模板和数据生成Word文档            t.process(params, out); //将填充数据填入模板文件并输出到目标文件        } catch (Exception e) {            log.error("word生成报错,错误信息{}", e.getMessage());            e.printStackTrace();        } finally {            if (out != null) {                out.flush();                out.close();            }            if (inputStream != null) {                inputStream.close();            }            if (fileOutputStream != null) {                fileOutputStream.close();            }            if (templateFile1 != null) {                templateFile1.delete();            }        }        return file == null ? null : file.getAbsolutePath();    }

最终会得到docx文件!!!!

来源地址:https://blog.csdn.net/weixin_70280523/article/details/128134784

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

java用模板生成word(docx)文档(含动态表格)

下载Word文档到电脑,方便收藏和打印~

下载Word文档

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录