java导出2007版word(docx格式)freemarker + xml 实现

Freemarker+xml生成docx

原理概述:word从2003版就支持xml格式,而freemarker是java封装的模板工具,两者结合也就是在xml中需要动态生成的部分调用freemarker的指令(类似于EL表达式),来生成我们需要的数据,再用流输出文件,就达到了写word的效果。

 

生成word的基本流程图如下:

 

1.       生成docx模板和xml模板

 

生成docx模板

 

按照项目需要生成固定格式的docx格式的模板。

为方便测试做了个简单的例子,docx模板的内容如下图:

 

生成xml模板

 

从docx模板中取出word/document.xml,由于docx属于zip格式,可以用winrar打开,如图:

 

 

 

除word文件夹外其它文件为基本配置文件,取出word/document.xml(存放word文件的文本内容)如下图:

 

 

 

需要把document.xml解压出来,修改里面需要从数据库导出的数据用freemarker的指令代替,例如${test} 同时可以用遍历函数

替换完成后相当于生成了xml模板

2.       利用freemarker填充数据并生成word文件

 

 

这里把数据库中的数据放到map中,把map和xml模板交给freemarker来生成(填充完数据)的xml具体实现方法如下:

package com.hannet.yigehui;

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;
import freemarker.template.TemplateException;

public class XmlToExcel {
	
	
	private static XmlToExcel tplm = null;
	 private Configuration cfg = null;

	 private XmlToExcel() {
	  cfg = new Configuration();
	 try {
	  //注册tmlplate的load路径
	   cfg.setClassForTemplateLoading(this.getClass(), "/template/");
	  } catch (Exception e) {
	   
	  }
	 }

	 private static Template getTemplate(String name) throws IOException {
	  if(tplm == null) {
	   tplm = new XmlToExcel();
	  }
	  return tplm.cfg.getTemplate(name);
	 }
	 
	 /**
	  * 
	  * @param templatefile 模板文件
	  * @param param        需要填充的内容
	  * @param out			填充完成输出的文件
	  * @throws IOException
	  * @throws TemplateException
	  */
	 public static void process(String templatefile, Map param ,Writer out) throws IOException, TemplateException{
	  //获取模板
	  Template template=XmlToExcel.getTemplate(templatefile);
	  template.setOutputEncoding("UTF-8");
	  //合并数据
	  template.process(param, out);
	  if(out!=null){
			out.close();
		}
	 }
}

 

利用java的zipFile 和 ZipOutputStream 及zipFile.getInputStream() 来根据docx模板导出 (需要把word/document.xml文件替换成(填充完数据)的xml)具体操作流程如下:

 

package com.hannet.yigehui;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.Writer;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;

import freemarker.template.TemplateException;

/**
 * 其实docx属于zip的一种,这里只需要操作word/document.xml中的数据,其他的数据不用动
 * @author yigehui
 *
 */
public class XmlToDocx {
	
	/**
	 * 
	 * @param documentFile  动态生成数据的docunment.xml文件
	 * @param docxTemplate	docx的模板
	 * @param toFileName	需要导出的文件路径
	 * @throws ZipException
	 * @throws IOException
	 */
	
	public  void outDocx(File documentFile,String docxTemplate,String toFilePath) throws ZipException, IOException {
	
		try {
		String fileName = XmlToDocx.class.getClassLoader().getResource("").toURI().getPath()+docxTemplate;
			
			File docxFile = new File(fileName);
			ZipFile zipFile = new ZipFile(docxFile);			
			Enumeration<? extends ZipEntry> zipEntrys = zipFile.entries();
			ZipOutputStream zipout = new ZipOutputStream(new FileOutputStream(toFilePath));
			int len=-1;
			byte[] buffer=new byte[1024];
			while(zipEntrys.hasMoreElements()) {
				ZipEntry next = zipEntrys.nextElement();
				InputStream is = zipFile.getInputStream(next);
				//把输入流的文件传到输出流中 如果是word/document.xml由我们输入
				zipout.putNextEntry(new ZipEntry(next.toString()));
				if("word/document.xml".equals(next.toString())){
					//InputStream in = new FileInputStream(new File(XmlToDocx.class.getClassLoader().getResource("").toURI().getPath()+"template/test.xml"));
					InputStream in = new FileInputStream(documentFile);
					while((len = in.read(buffer))!=-1){
						zipout.write(buffer,0,len);
					}
					in.close();
				}else {
					while((len = is.read(buffer))!=-1){
						zipout.write(buffer,0,len);
					}
					is.close();
				}		
			}			
			zipout.close();			
		} catch (URISyntaxException e) {
			e.printStackTrace();
		}catch (FileNotFoundException e) {
			e.printStackTrace();
		}	
	}
}

  

这里输出的文件即为完整的docx格式的word文件

 

测试调用的代码:

public static void main(String[] args) throws IOException, TemplateException {

		//xml的模板路径*/*
		String xmlTemplate = "test.xml";
		
		//设置docx的模板路径 和文件名
		String docxTemplate = "template/test.docx";
		String toFilePath = "d:\\test.docx";
		
		//填充完数据的临时xml
		String xmlTemp = "d:\\temp.xml";
		Writer w = new FileWriter(new File(xmlTemp));
		
		//1.需要动态传入的数据
		Map<String,Object> p = new HashMap<String,Object>();
		List<String> students = new ArrayList<String>();
		students.add("张三");
		students.add("李四");
		students.add("王二");		
		p.put("test", "测试一下是否成功");
		p.put("students", students);
		
		//2.把map中的数据动态由freemarker传给xml
		XmlToExcel.process(xmlTemplate, p, w);
		
		//3.把填充完成的xml写入到docx中
		XmlToDocx xtd = new XmlToDocx();
		xtd.outDocx(new File(xmlTemp), docxTemplate, toFilePath);
		}

 

猜你喜欢

转载自action-java.iteye.com/blog/2289970
今日推荐