我是靠谱客的博主 包容日记本,最近开发中收集的这篇文章主要介绍java文档模板替换文件的指定内容(fremarker),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这里我用word文档举例子

在这里插入图片描述

首先新建一个word文档把你想要替换的内容用${}变量括起来

然后另存为 word 格式的xml如图
在这里插入图片描述

注意是另存为不是改后缀名。

之后把另存为 的文件后缀名改为ftl文件
java代码如下:

  public  void dos(){
            Map<String, Object> dataMap = new HashMap<String, Object>();
            try {
                //编号
                dataMap.put("postaladdress", "123456");
                //日期
               // dataMap.put("date", new SimpleDateFormat("yyyy年MM月dd日").format(new SimpleDateFormat("yyyy-MM-dd").parse("2018-09-19")));
                //附件张数
                dataMap.put("postalcode", 1);
                //受款人
                dataMap.put("address", "阿萨大大");
                //付款用途
                dataMap.put("postCode", "啊实打实");
                dataMap.put("addressee", "111爱上1");
                dataMap.put("title", "111爱上1");
                dataMap.put("sender", "SS");
                dataMap.put("receivingUnit", "1111");
                dataMap.put("faxNumber", "1111");
                dataMap.put("faxNumbers", "1111");
                dataMap.put("phone", "1111");
                dataMap.put("productName", "1111");
                dataMap.put("businessDate", "1111");
                dataMap.put("contractsAndRestrictions", "1111");
                dataMap.put("day", "1111");
                dataMap.put("detailedDescription", "1111");
                //Configuration 用于读取ftl文件
                Configuration configuration = new Configuration(new Version("2.3.23"));
                configuration.setDefaultEncoding("utf-8");

                /**
                 * 以下是两种指定ftl文件所在目录路径的方式,注意这两种方式都是
                 * 指定ftl文件所在目录的路径,而不是ftl文件的路径
                 */
                //指定路径的第一种方式(根据某个类的相对路径指定)
                configuration.setClassForTemplateLoading(this.getClass(), "../../../");

                //指定路径的第二种方式,我的路径是C:/a.ftl
                //     configuration.setDirectoryForTemplateLoading(new File("c:/"));

                //输出文档路径及名称
                File outFile = new File("D:/报销信息导出.doc");

                //以utf-8的编码读取ftl文件
                System.out.println(configuration.getTemplate(""));
                Template template = configuration.getTemplate("word.ftl", "utf-8");
                Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile), "utf-8"), 10240);
                template.process(dataMap, out);
                out.close();
            } catch (Exception e) {
                e.printStackTrace();
            }

        }

这是我的模板文件放置位置
在这里插入图片描述
如果 ftl格式不对报错 请去我的主页翻看 ftl文件格式不对解决 这边博客可以帮你格式化ftl文件
https://blog.csdn.net/wz6178/article/details/103727153 这是链接

最后

以上就是包容日记本为你收集整理的java文档模板替换文件的指定内容(fremarker)的全部内容,希望文章能够帮你解决java文档模板替换文件的指定内容(fremarker)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(90)

评论列表共有 0 条评论

立即
投稿
返回
顶部