一、目的
这个功能已经完成很久了,一直没有想起来去整理成文,今天就把它整理出来,供大家参考和批评。这个导出功能也研究了好几天,同时也看了很多人写的博客,真的是千篇一律,好多都不是我想要的功能,为什么要做导出word呢,肯定是工作需要了,是将公司的博文导出来,这个博文,因为是用的ueditor在线编辑器,肯定会将很多样式存到数据库中,这里面导出处理就会很麻烦。
二、准备工作
网上我看了好多关于导出word文档的方法,最常见的有poi(应该能实现,没去尝试)、java-jacob(jacob需要调用本地的dll,而且在linux上市不能用的,只能在windows平台下运行)、itext生成rtf(不清楚)、freemark(本文方法),最初我也只是尝试过java-jacob但是只能支持windows,现在一般的服务器都是linux,所以肯定pass。
所需jar包:freemark-2.3.15.jar
三、正文
用freemark我们知道它是根据ftl模板来生成对应的word文件的,可以是xml格式,可以是html、也可以是mht格式,但最终都能通过修改后缀名来形成word文档,而Microsoft Word 都能识别,只要你生成的几种格式没有语法错误。xml格式应该是word文件流标准版,而html是网页形式,mht单一文件形式(css、图片等都包含在内)。
用xml确实能实现,但是工作量非常巨大,因为字体格式只能通过
所以实现标准版显然是不可能了,而且我们还要导出图片呢,尝试html
首先建立一个ftl文件,blog.ftl
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">
${title}
<#if category??>
博文属于:
${category}
#if>
<#if classifyName??>
博文分类标签:
${classifyName}
#if>
<#if allTagName??>
<#list allTagName as tagName>
${tagName}
#list>
#if>
${content}
BlogHandler.java
public class BlogHandler{
private Configuration configuration = null;
public Map
public final static String TITLE = "title";
public final static String CATEGORY = "category";
public final static String CLASSIFYNAME = "classifyName";
public final static String CONTENT = "content";
public final static String ALLTAGNAME = "allTagName";
public BlogHandler() {
configuration = new Configuration();
configuration.setDefaultEncoding("utf-8");
}
public void createDoc(Writer out) {
//设置模本装置方法和路径,FreeMarker支持多种模板装载方法。可以重servlet,classpath,数据库装载,
//模板
configuration.setClassForTemplateLoading(this.getClass(), "/com/yuqiaotech/pms/util");
Template t=null;
try {
//test.ftl为要装载的模板
t = configuration.getTemplate("blog.ftl");
t.process(dataMap, out);
} catch (TemplateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
/*
* 标签src替换为加上域名的链接
*/
public String exchangeImg(String content){
String regex = "]+src\\s*=\\s*['\"]([^'\"]+)['\"][^>]*>";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(content);
String src = "";
String scheme = getRequest().getScheme() + "://"
+ getRequest().getServerName() + ":" + getRequest().getServerPort();
//避免重复的图片链接
HashSet
while (matcher.find()) {
src = matcher.group(1);
set.add(src);
}
for(String str : set) {
if(str.contains(scheme)){
continue;
}
content = content.replace(str, scheme+str);
}
return content;
}
}
}
BlogAction.java
public class BlogAction extends BaseAction {
public void exportBlog() throws UnsupportedEncodingException {
String title = article.getTitle();
getResponse().addHeader("Content-Disposition","attachment;filename=" + new String(title.getBytes("GBK"), "iso-8859-1") + ".doc");
getResponse().setContentType("application/x-download");//pplication/x-download
getResponse().setCharacterEncoding("utf-8");
PrintWriter output = null;
try {
output = getResponse().getWriter();
BlogHandler handler = new BlogHandler();
handler.dataMap.put(BlogHandler.TITLE, article.getTitle());
handler.dataMap.put(BlogHandler.CATEGORY, article.getCategory());
handler.dataMap.put(BlogHandler.CLASSIFYNAME, article.getClassifyName());
handler.dataMap.put(BlogHandler.CONTENT, handler.exchangeImg(article.getContent()));
String hql = "select tagName from TagMark where entityType='Blog' and relateEntityId = " + articleId;
List
if(alltagName.size() > 0){
handler.dataMap.put(BlogHandler.ALLTAGNAME, alltagName);
}
handler.createDoc(output);
} catch (IOException e) {
e.printStackTrace();
} finally{
output.flush();
output.close();
}
}
}
效果图
问题:这个word只能在有网的情况下才能查看,因为我存的是链接,如果要能在本地随时打开的话,用还需生成.file文件夹(存图片),这样不太方便,毕竟不是一体的,想复制还得把文件夹拷贝走,所以换成mht单一文件模式。下一章贴代码。。。