1、整体思路
利用xml模板,在模板中预留占位标识(${yourContent}),然后将xml转为ftl文件,通过Map传值填充对应的内容即可,word其实和html一样,也有自己的xml标签,表头、段落、图片、以及字体、标题等的标签。文字必须包含在段落中,如:
${yourContent}
,图片必须是在
${image}
其中、和有几个必填参数,后面的代码会涉及到。集合的循环遍历通过${alias.property}...#list>方式实现。
2、生成模板
新建word模板,设置自己要替换的内容。比如下面例子:
我的文档
作者:author 时间:time 内容:content
把新建好的word导出成word2003xml文件,然后将author改成${author},time改成${time},content改成${content}然后修改后缀名为ftl文件,存到项目里面。
3、替换内容
实际操作中,不光会遇到纯文字的,经常会遇到文字加图片。图片的实现:先转换成base64的字符串,然后填充到图片的标签中(网络图片,必须先下载到本地才能转换)。下面是转换的代码:
----------
/**
* 替换内容中的图片,样式
*
* @param content
* @return
* @throws Exception
*/
public String replaceImage(String content) throws Exception {
try {
Pattern p = Pattern.compile("]+src\\s*=\\s*['\"]([^'\"]+)['\"][^>]*>");Matcher m = p.matcher(content);
int i = 0;
content = StyleFilter.shieldStyle(content);
while (m.find()) {
String width = getWidth(m.group());
String height = getHeight(m.group());
String target = getWholeImage(m.group(1), width, height);
content = content.replace(m.group(), target);
}
} catch (ConfigurationException e) {
e.printStackTrace();
}
return content;
}
public String getWidth(String content) {
String regex = "width=['\"]?(.*?)['\"]?\\s.*?>";
Pattern p = Pattern.compile(regex);Matcher m = p.matcher(content);
while (m.find()) {
return m.group(1);
}
return null;
}
public String getHeight(String content) {
String regex = "height=['\"]?(.*?)['\"]?\\s.*?>";
Pattern p = Pattern.compile(regex);Matcher m = p.matcher(content);
while (m.find()) {
return m.group(1);
}
return null;
}
/**
* 生成图片(独立成段落的图片,仅前半部分,后半部分手动拼接)
*
* @param imgUrl
* @param width
* @param height
* @return
* @throws Exception
*/
public String getWholeImage(String imgUrl, String width, String height) throws Exception {
String result = "";
try {
if (null != width && null != height) {
String no = Math.random() * 100 + "";
String binData1 = "";
String binData2 = "
+ ";height:" + height + "\">
";
result = binData1 + getImageStr(imgUrl) + binData2 + "";
} else {
String no = Math.random() * 100 + "";
String binData1 = "";
String binData2 = "
+ "\" type=\"#_x0000_t75\">
";
result = binData1 + getImageStr(imgUrl) + binData2 + "";
}
} catch (ConfigurationException e) {
e.printStackTrace();
}
return result;
}
其中这两块的名字必须是一致的![](leanote://file/getImage?fileId=57885a94128c7b03ba000000)
/**
* 图片转码
*
* @return 返回图片base64字符串
* @throws Exception
*/
public static String getImageStr(String imgUrl) throws Exception {
String imgPath = download(imgUrl, Math.random() * 100 + ".png", Config.ReadStringPropertie("pictureDownload"));
InputStream in = null;
byte[] data = null;
try {
in = new FileInputStream(imgPath);
data = new byte[in.available()];
in.read(data);
in.close();
} catch (Exception e) {
e.printStackTrace();
}
BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(data);
}
/**
* 下载图片的方法(图片下载到本地后才可转化成base64字符串)
*
* @param urlString
* @param fileName
* @param savePath
* @return
* @throws Exception
*/
public static String download(String urlString, String fileName, String savePath) throws Exception {
// 构造URL
URL url = new URL(urlString);
// 打开连接
URLConnection con = url.openConnection();
// 设置请求超时为5s
con.setConnectTimeout(5 * 1000);
// 输入流
InputStream is = con.getInputStream();
// 1K的数据缓冲
byte[] bs = new byte[1024];
// 读取到的数据长度
int len;
// 输出的文件流
File sf = new File(savePath);
if (!sf.exists()) {
sf.mkdirs();
}
String imgUrl = sf.getPath() + "\\" + fileName;
OutputStream os = new FileOutputStream(sf.getPath() + "\\" + fileName);
// 开始读取
while ((len = is.read(bs)) != -1) {
os.write(bs, 0, len);
}
// 完毕,关闭所有链接
os.close();
is.close();
return imgUrl;
}
enter code here
调用replaceImage方法获取处理过的字符串,然后赋值到Map中,再调用创建word的方法:
public String createWord(Map dataMap) {
String path = "/myWrongBook" + Math.random() * 3 + ".doc";
try {
Template t = null;
configuration.setClassForTemplateLoading(this.getClass(), "your template path"); // FTL文件所存在的位置
t = configuration.getTemplate("template.ftl");
File outFile = new File(Config.ReadStringPropertie("wrongBooks") + path);
Writer out = null;
out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile), "UTF-8"));
t.process(dataMap, out);
out.close();
path = Config.ReadStringPropertie("serverPath") + "/wrongBooks" + path;
//Config.ReadStringPropertie("serverPath")是获取服务器路径的方法,就不给出了
} catch (IOException ie) {
ie.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return path;
}
----------