最近使用freemaker通过ftl模板生成word,这种方案较其他方式相对简便。
普通字符替换模板导出
1.使用${value}替换要修改个内容,如:
2.将该word文件另存为xml格式
3.将xml文件的扩展名直接改为ftl
4.用java代码完成导出(需要导入freemarker.jar),其中jar包的选择为
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.23</version>
</dependency>
基础代码为
/** 初始化配置文件 **/
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<String,List<WordOne>> dataMap = new HashMap<>();
Map<String,Object> 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.表格建立如图:
2.xml配置文件如图:
注意:两个list的标签要把表格包住,最好写在成对的标签上下。
表格循环模板导出
1.先看效果图,即:
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<WordOne> 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<WordOne> 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中找的了这个
<w:p w:rsidR="00CD6F2D" w:rsidRDefault="00CD6F2D" w:rsidP="0078153C"><w:pPr><w:pStyle w:val="table-items"/><w:rPr><w:rFonts w:asciiTheme="minorHAnsi" w:eastAsiaTheme="minorEastAsia" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/><w:bCs/><w:color w:val="auto"/><w:kern w:val="2"/><w:sz w:val="21"/><w:szCs w:val="22"/><w:bdr w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:rPr></w:pPr></w:p>"
它就是xml里换行的东西= =
4.后来坑爹又让我加超链接,我又瞎了眼的进到茫茫标签里找,最后把这对东西提了出来
<Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" Target="0308初始化IvParameterSpec函数错误.txt" TargetMode="External"/>
<w:hyperlink r:id="rId6" w:history="1"><w:r w:rsidR="004335D5" w:rsidRPr="004335D5"><w:rPr><w:rStyle w:val="a8"/><w:rFonts w:asciiTheme="minorHAnsi" w:hAnsiTheme="minorHAnsi" w:cstheme="minorBidi"/><w:bCs/><w:kern w:val="2"/><w:sz w:val="21"/><w:szCs w:val="22"/><w:bdr w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:rPr><w:t>Total.txt</w:t></w:r></w:hyperlink>
前一条是在word前面的配置中加的,Id="rId6"中rId不能动,6可以替换。Target的值是超链接的间接地址
UN6}G~3~F_5$OT9QY}7X822.png后一条是超链接的标签,你可以在${value}中把它帖进去,这样就出现了一个显示为Total.txt的链接到Target的超链接,其中<w:t>Total.txt</w:t>可变。
网友评论