本文主要是介绍Freemark实现Java导出Word,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
项目需求:我们需要动态的去导出word数据,进行打印,然后让领导签字,审查,
提供的解决方案:
1、使用poi导出
2、动态拼接html,然后使用局部打印页面
3、对Freemark的静态模板进行数据填充
经过讨论,动态拼接html被砍掉了,因为打印的时候不灵活,主要是样式不好控制。对于poi导出和freemark来说,freemark更加的简单便捷,so,show time:
a、制作word模板:
b、另存为:
c、查看.xml文件:
注意:在做模板的时候,可以找一个简单的字符去做,然后在xml文件中去替换成要设置的变量就可以,以防止由于格式问题,被改乱。
d、java获取数据,进行数据填充
/*** @author 李卫中 2017年3月6日13:22:10* 生成word文件*/@RequestMapping(value = "createDoc")@ResponseBodypublic String createDoc(){//获取需要进行填充的数据 Map<String, Object> dataMap=new HashMap<String,Object>();dataMap.put("mapList", mapList);try { logger.debug("开始执行生成word");// 模板的路径File fir = new File("C://Users//walsr//Desktop//当前work信息//");// 生成文件的路径及文件名。File outFile = new File("C://Users//walsr//Desktop//field//审核单test.doc");BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile), "UTF-8"));// 使用FileTemplateLoader //指定模板路径TemplateLoader templateLoader = null;templateLoader = new FileTemplateLoader(fir);String tempname = "发布审核单test.ftl";Configuration cfg = new Configuration();cfg.setTemplateLoader(templateLoader);Template t = cfg.getTemplate(tempname, "UTF-8");t.process(dataMap, out);out.flush();out.close();logger.debug("word生成成功");try {//打开本地文件(不需要)Desktop.getDesktop().open(new File("C://Users//walsr//Desktop//当前work信息//field//发布审核单test.doc"));return "true";}catch (IOException e) {logger.debug("打开文档失败");e.printStackTrace();return "false";}} catch (Exception e) { logger.debug("word生成失败");e.printStackTrace();return "false";} }
问题:这样的东西,向word模板中导出一般数据就够用了,但是对于图片来说,还有一个小插曲
/*** @author 李卫中 2017年3月6日13:22:27* 获取图片格式的base64格式编码* @param imagepath 图片路径* @return*/public String getImageBinary(String imagePath) { InputStream in = null; byte[] data = null; //读取图片字节数组 try{ in = new FileInputStream(imagePath); data = new byte[in.available()]; in.read(data); in.close(); } catch (IOException e){ logger.debug("路径:"+imagePath+"下,没有找到对应图片");e.printStackTrace(); } //对字节数组Base64编码 Base64Encoder encoder = new Base64Encoder(); String pathCode=encoder.encode(data);//返回Base64编码过的字节数组字符串 return pathCode;} /*** @author 李卫中 2017年3月6日13:22:35* 向word导出图片,获取对应的xmlDoc*/public String getXmlDoc(List<String> pathList){//String path=getImageBinary("C:\\Users\\walsr\\Pictures\\8AC7021A9685D32C538E89A03B6770A9.jpg");String resData="";for(int i=0;i<pathList.size();i++){String pathCode=getImageBinary(pathList.get(i).toString());String imageData="<w:pict><w:binData w:name='wordml://"+i+".png' xml:space='preserve'>" + pathCode+"</w:binData><v:shape id='图片 1' o:spid='_x0000_i1026' type='#_x0000_t75' style='width:102pt;height
在这里,我们需要用base64编码来改变图片的识别格式,交给前面的模板进行显示。:136.5pt;visibility:visible;mso-wrap-style:square'><v:imagedata src='wordml://"+i+".png' o:title=''/></v:shape></w:pict><w:br />";resData+=imageData;}return resData;}
总结:
循环,判断在里面是很常见的,所以,自己整理一下相关的知识,然后更好的应用能够到实际工作中。
这篇关于Freemark实现Java导出Word的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!