1.首先在Eclipse Java EE版中新建一个Dynamic Web Project,项目结构如下图所示
需要向项目中加入freemarker的JAR文件,可以通过下面的链接获得Freemarker的最新版本:
2.模板文件resume.ftl是如何生成的呢,其实非常简单,将需要的Word文档做好之后,选择另存为XML文件,另存之后建议用Editplus、Notepad++、Sublime等工具打开查看一下,因为有的时候你写的占位符可能会被拆开,这样Freemarker就无法处理了。
打开XML文件看看吧,如果刚才你写的${title}、${name}被xml文件给拆散了,修改一下XML文件就OK了。
修改过后另存为resume.ftl模板文件,如下所示:
3.接下来就是Servlet(也可以是Struts2的Action、Spring MVC的Controller等)和工具类WordGenerator的编写以及页面test.jsp的制作了,代码如下所示:
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
req.setCharacterEncoding("utf-8");
Map<String,Object> map = new HashMap<String,Object>();
Enumeration<String> paramNames = req.getParameterNames();
//通过循环将表单中的参数放入键值对映射中
while(paramNames.hasMoreElements()){
String key = paramNames.nextElement();
String value = req.getParameter(key);
map.put(key, value);
}
/*提示:在调用工具类生成Word文档之前应当检查所有字段是否完整(因为在freemark中没有对null进行出来,如果值是null的话
freemark将会报错)*/
//否则Freemarker的模板殷勤在处理时可能会因为找不到值而报错这里暂时忽略这个步骤了
File file = null;
InputStream fin = null;
ServletOutputStream out = null;
try{
file = WordGenerator.createDoc(map,"resume");
fin = new FileInputStream(file);
resp.setCharacterEncoding("utf-8");
resp.setContentType("application/msword");
// 设置浏览器以下载的方式处理该文件默认名为resume.doc
resp.addHeader("Content-Disposition", "attachment;filename=resume.doc");
out = resp.getOutputStream();
byte[] buffer = new byte[1024];
int bytesToRead = -1;
// 通过循环将读入的Word文件的内容输出到浏览器中
while((bytesToRead = fin.read(buffer)) != -1) {
out.write(buffer, 0, bytesToRead);
}
}finally{
if(fin != null) fin.close();
if(out != null) out.close();
if(file != null) file.delete(); // 删除临时文件
}
}
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.HashMap;
import java.util.Map;
import freemarker.template.Configuration;
import freemarker.template.Template;
public class WordGenerator {
private static Configuration configuration = null;
private static Map<String,Template> allTemplates = null;
static{
configuration = new Configuration();
configuration.setDefaultEncoding("utf-8");
configuration.setClassForTemplateLoading(WordGenerator.class,"/com/yuan/ftl");
allTemplates = new HashMap<String, Template>();
try {
allTemplates.put("resume",configuration.getTemplate("resume.ftl"));
} catch (IOException e) {
e.printStackTrace();
}
}
public static File createDoc(Map<?,?>dataMap,String type){
String name = "temp"+(int)(Math.random()*100000)+".doc";
File f = new File(name);
Template t = allTemplates.get(type);
try{
Writer w = new OutputStreamWriter(new FileOutputStream(f),"utf-8");
t.process(dataMap, w);
w.close();
}catch(Exception e){
e.printStackTrace();
}
return f;
}
}
JSP页面的代码:
<%@ page pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Document</title>
<style type="text/css">
* { font-family: "微软雅黑"; }
.textField { border:none; border-bottom: 1px solid gray; text-align: center; }
#file { border:1px solid black; width: 80%; margin:0 auto; }
h1 input{ font-size:72px; }
td textarea { font-size: 14px; }
.key { width:125px; font-size:20px; }
</style>
</head>
<body>
<form action="MyServlet" method="post">
<div id="file" align="center">
<h1><input type="text" name="title" class="textField" value="我的简历"/></h1>
<hr/>
<table>
<tr>
<td class="key">姓名:</td>
<td><input type="text" name="name" class="textField"/></td>
<td class="key">性别:</td>
<td>
<input type="radio" name="gender" value="男" checked/>男
<input type="radio" name="gender" value="女" />女
</td>
</tr>
<tr>
<td class="key">联系电话:</td>
<td><input type="text" name="tel" class="textField"/></td>
<td class="key">家庭住址:</td>
<td><input type="text" name="address" class="textField"/></td>
</tr>
<tr>
<td colspan="4" class="key">个人简介:</td>
</tr>
<tr>
<td colspan="4">
<textarea rows="10" cols="100" name="content"></textarea>
</td>
</tr>
</table>
</div>
<div align="center" style="margin-top:15px;">
<input type="submit" value="保存Word文档" />
</div>
</form>
</body>
</html>
5.此外,如果你希望在Word文档中插入图片,可以把Word另存为的XML文件中代表图片的那个很长的字符串(BASE64编码的字符串)换成一个占位符,在将要插入Word文档的图片对象转换成BASE64编码的字符串,用该字符串替换掉占位符就可以了,示意图和代码如下所示:
6.将图片转换成BASE64字符串的代码如下所示:
public static String getImageString(String filename) throws IOException {
InputStream in = null;
byte[] data = null;
try {
in = new FileInputStream(filename);
data = new byte[in.available()];
in.read(data);
in.close();
} catch (IOException e) {
throw e;
} finally {
if(in != null) in.close();
}
BASE64Encoder encoder = new BASE64Encoder();
return data != null ? encoder.encode(data) : "";
}
7.注意:这里使用的BASE64Encoder类在sun.misc包下,rt.jar中有这个类,但是却无法直接使用,需要修改访问权限,在Eclipse中可以这样修改
在项目上点右键选择Properties菜单项进入如下图所示的界面:
网友评论