制作Word模版
建议使用高版本的office做,尽量不要用WPS做,生成xml会出现乱码
编码要统一,推荐UTF-8
建好模板,将模板另存为xml格式,建议原来模板不要删,xml的如果后期打不开,还有原版参考
(编辑器网上有人说firstobject XML Editor这个好用,本次没用到直接用的是Editplus)
需要freemarker-2.3.13.jar包
package com.xu.word.export; import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map; import org.junit.Test; import sun.misc.BASE64Encoder;
import freemarker.template.Configuration;
import freemarker.template.DefaultObjectWrapper;
import freemarker.template.Template;
import freemarker.template.TemplateException;
import freemarker.template.TemplateExceptionHandler; public class DocumentHandler {
private Configuration configuration = null; public DocumentHandler() {
configuration = new Configuration();
// 设置默认编码为UTF-8
configuration.setDefaultEncoding("UTF-8");
} /**
*
* @param dir 目录名称
* @param fileName 文件名
* @param savePath 要保存的路径
* @param sDate 数据(键值对形式,Map形式最好)
*/
public void createDocForMap(String dir, String fileName, String savePath, Map dataMap) {
// 要填入模本的数据文件 dataMap
// 设置模本装置方法和路径,FreeMarker支持多种模板装载方法。可以重servlet,classpath,数据库装载,
// 这里我们的模板是放在com.xu.word.export.template包下面???好像加不加这句话都一样
configuration.setClassForTemplateLoading(this.getClass(), "/template");
Template t = null;
try {
// 从什么地方加载freemarker模板文件
configuration.setDirectoryForTemplateLoading(new File(dir)); // 设置对象包装器
configuration.setObjectWrapper(new DefaultObjectWrapper());
// 设置异常处理器
configuration
.setTemplateExceptionHandler(TemplateExceptionHandler.IGNORE_HANDLER);
// 装载的模板
t = configuration.getTemplate(fileName, "UTF-8");
} catch (IOException e) {
e.printStackTrace();
}
// 输出文档路径及名称
File outFile = new File(savePath);
Writer out = null;
try {
out = new BufferedWriter(new OutputStreamWriter(
new FileOutputStream(outFile), "utf-8"));
} catch (Exception e1) {
e1.printStackTrace();
} try {
t.process(dataMap, out);
} catch (TemplateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} /**
* 将图片进行BASE64编码
* @param imgFilePath 图片路径
* @return
*/
private static String getImageStr(String imgFilePath) {
String imgFile = imgFilePath;
InputStream in = null;
byte[] data = null;
try {
in = new FileInputStream(imgFile);
data = new byte[in.available()];
in.read(data);
in.close();
} catch (IOException e) {
e.printStackTrace();
}
BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(data);
} /**
* 测试方法
*/
@Test
public void testImportWord(){
long start = System.currentTimeMillis(); Map data = new HashMap();
data.put("abcd1", "尼玛");
// 集合数据
List l = new ArrayList();
l.add("aaaaa"); // 此处可以进行换行加到模板中 <w:br />
l.add("abbbb");
l.add("cccc");
l.add("ddd");
data.put("abcd1", l); data.put("abcd2", "尼玛1");
data.put("abcd3", "尼玛2");
data.put("abcd4", "尼玛3");
data.put("abcd5", "尼玛4");
data.put("abcd6", "尼玛5");
data.put("abcd7", "尼玛6");
data.put("abcd8", "尼玛7");
data.put("abcd9", "尼玛8");
// 目录获取有点繁琐了
String root = DocumentHandler.class.getClassLoader().getResource("").getPath() + "com/xu/word/export/template/"; data.put("image", getImageStr(root+"/1.jpg"));
DocumentHandler dh = new DocumentHandler();
dh.createDocForMap(root, "tpl.ftl", "E:/outFile4.doc", data); long end = System.currentTimeMillis();
System.out.println("导出成功,用时" + (end - start));
} }
如果你希望在Word文档中插入图片,可以把Word另存为的XML文件中代表图片的那个很长的字符串( BASE64编码 的字符串)换成一个占位符,在将要插入Word文档的图片对象转换成BASE64编码的字符串,用该字符串替换掉占位符就可以了