freemaker生成word

最近使用freemaker通过ftl模板生成word,这种方案较其他方式相对简便。

普通字符替换模板导出

1.使用${value}替换要修改个内容,如:


freemaker生成word_第1张图片

2.将该word文件另存为xml格式
3.将xml文件的扩展名直接改为ftl
4.用java代码完成导出(需要导入freemarker.jar),其中jar包的选择为


      org.freemarker
      freemarker
      2.3.23
    

基础代码为

 /** 初始化配置文件 **/
            Configuration configuration = new Configuration();
            /** 设置编码 **/
            configuration.setDefaultEncoding("utf-8");
            /** ftl文件**/
            String fileDirectory = "/home/sony/download";
            /** 加载文件 **/
            configuration.setDirectoryForTemplateLoading(new File(fileDirectory));
            /** 加载模板 **/
            Template template = configuration.getTemplate("test10.ftl");
            /** 准备数据 **/
//            Map> dataMap = new HashMap<>();
            Map dataMap = new HashMap<>();

            String content = "";
            if(is_packed.equals("是")){
                content = display_name + ",该版本采用加固技术,属于中等加固强度,经过脱壳处理后,检测" + String.valueOf(name.size()) + "项安全指标,共发现" + String.valueOf(count) + "处漏洞项。";
            }
            else
                content = display_name + ",该版本未采用加固技术。";
            dataMap.put("content", content);

              /** 指定输出word文件的路径 **/
            File f = new File("/home/sony/word");
            if(!f.exists())
                f.mkdir();

            File file = new File("/home/sony/word/" + app_id);
            if(!file.exists())
                file.mkdir();

            String filename = f.getCanonicalPath() + "/" + app_id;
//            System.out.println(filename);
            String outFilePath = filename + "/" + app_id + ".doc";
            File docFile = new File(outFilePath);
            FileOutputStream fos = new FileOutputStream(docFile);
            Writer out = new BufferedWriter(new OutputStreamWriter(fos, "utf-8"),10240);
            template.process(dataMap,out);

            if(out != null){
                out.close();
            }

普通表格模板导出

1.表格建立如图:


freemaker生成word_第2张图片

2.xml配置文件如图:

freemaker生成word_第3张图片

freemaker生成word_第4张图片

注意:两个list的标签要把表格包住,最好写在成对的标签上下。

表格循环模板导出

1.先看效果图,即:


freemaker生成word_第5张图片

2.要完成表格的循环输入,可以把一行看做一个类,每行中的一列为类中的一个属性。

public class WordOne {
    private String a;
    private String b;
    private String c;
    private String d;
    private String e;
    private String f;
 //get set以及构造方法省略
 for(int i = 0;i < 41;i++){
                if(i < name.size()){
                    List wordTwo = new ArrayList<>();
                    String title = "无";
                    String titlecopy = "无";
                    if(status.get(i).equals("存在风险")){
                        title = title1.get(i);
                        titlecopy = title2.get(i);
                    }

                    wordTwo.add(new WordOne(name.get(i),aim.get(i),title,status.get(i),level.get(i),suggestion.get(i)));

                    dataMap.put("list" + String.valueOf(m),wordTwo);

                    m++;
                }
                else {
                    List wordThree = new ArrayList<>();
                    wordThree.add(new WordOne("0","0","0","0","0","0"));
                    dataMap.put("list" + String.valueOf(m),wordThree);
                    m++;
                }
            }

看起来似乎很简单,但是!!!

吐血整理使用freemaker中遇到的坑

1.在${value}中加入的内容不能包含<>&等xml中使用的格式,最好将之替换或转义,否则通过freemaker填入后,word的xml格式会识别出错,进而打不开word
2.添加list标签的时候一定要看清楚标签对囊括的收尾是否包含的是一个整体部分,推荐参照上图中的添加格式(加在其他地方也不是不行,但极容易出错)。
3.换行在网上搜有一个${parm}的加法,但是还是得添list。我嫌麻烦,在xml中找的了这个

"

它就是xml里换行的东西= =
4.后来坑爹又让我加超链接,我又瞎了眼的进到茫茫标签里找,最后把这对东西提了出来



Total.txt

前一条是在word前面的配置中加的,Id="rId6"中rId不能动,6可以替换。Target的值是超链接的间接地址

freemaker生成word_第6张图片
UN6}G~3~F_5$OT9QY}7X822.png

后一条是超链接的标签,你可以在${value}中把它帖进去,这样就出现了一个显示为Total.txt的链接到Target的超链接,其中Total.txt可变。

你可能感兴趣的:(freemaker生成word)