当前位置: 首页 > wzjs >正文

ASP网站开发教程实验总结襄樊网站开发

ASP网站开发教程实验总结,襄樊网站开发,地产网站开发,微信小程序怎么做问卷调查该代码是一个用于生成和导出Word文档的工具类,主要功能如下: 1、exportTemplateWord:通过指定模板路径、文件名和参数,生成并导出Word文档。 2、exportMillCertificateWord:结合FreeMarker模板引擎,生成包含…

该代码是一个用于生成和导出Word文档的工具类,主要功能如下:
1、exportTemplateWord:通过指定模板路径、文件名和参数,生成并导出Word文档。
2、exportMillCertificateWord:结合FreeMarker模板引擎,生成包含表格等内容的Word文档,并将其输出到浏览器。
3、createDoc:根据模板和数据生成临时Word文件。

package com.gzstrong.cloud.dgsalary.util;import cn.afterturn.easypoi.word.WordExportUtil;
import freemarker.template.Configuration;
import freemarker.template.Template;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.net.URLEncoder;
import java.util.Map;public class WordUtil {private static Configuration configuration = null;// 这里注意的是利用WordUtils的类加载器动态获得模板文件的位置private static final String templateFolder = WordUtil.class.getResource("/template").getPath();static {configuration = new Configuration();configuration.setDefaultEncoding("utf-8");try {configuration.setDirectoryForTemplateLoading(new File(templateFolder));} catch (IOException e) {e.printStackTrace();}}/*** 导出word* 模版变量中变量格式:{{a}}** @param templatePath word模板地址* @param fileName     文件名* @param params       替换的参数* */public static void exportTemplateWord(String templatePath, String fileName, Map<String, Object> params) {try {HttpServletResponse response = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getResponse();XWPFDocument doc = WordExportUtil.exportWord07(templatePath, params);//设置响应体内容类型response.setContentType("application/octet-stream");//添加响应头response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8"));//暴露新添加的响应头response.setHeader("Access-Control-Expose-Headers", "Content-Disposition");//将word文档流输出到输出流中doc.write(response.getOutputStream());//关闭流doc.close();} catch (Exception e) {e.printStackTrace();}}/*** 导出word 包含遍历创建表格** @param response 响应对象* @param map      word文档中参数* @param wordName 为模板的名字  例如xxx.ftl* @param fileName 是word 文件的名字 格式为:"xxxx.doc"* @param name     是临时的文件夹米名称 string类型 可随意定义* @throws IOException*/public static void exportMillCertificateWord(HttpServletResponse response, Map map, String wordName, String fileName, String name) throws IOException {Template freemarkerTemplate = configuration.getTemplate(wordName);File file = null;InputStream fin = null;ServletOutputStream out = null;try {// 调用工具类的createDoc方法生成Word文档file = createDoc(map, freemarkerTemplate, name);fin = new FileInputStream(file);response.setCharacterEncoding("utf-8");response.setContentType("application/x-download");response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8"));response.setHeader("Access-Control-Expose-Headers", "Content-Disposition");out = response.getOutputStream();byte[] buffer = new byte[512];// 缓冲区int bytesToRead = -1;// 通过循环将读入的Word文件的内容输出到浏览器中while ((bytesToRead = fin.read(buffer)) != -1) {out.write(buffer, 0, bytesToRead);}out.flush();} finally {if (fin != null) fin.close();if (out != null) out.close();if (file != null) file.delete();// 删除临时文件}}private static File createDoc(Map<?, ?> dataMap, Template template, String name) {File f = new File(name);Template t = template;try {// 这个地方不能使用FileWriter因为需要指定编码类型否则生成的Word文档会因为有无法识别的编码而无法打开Writer w = new OutputStreamWriter(new FileOutputStream(f), "utf-8");t.process(dataMap, w);w.close();} catch (Exception ex) {ex.printStackTrace();throw new RuntimeException(ex);}return f;}}

    Map<String, Object> dataMap=new HashMap<>();dataMap.put("post",person.getPost());dataMap.put("deptName",person.getDeptName());dataMap.put("name",person.getName());dataMap.put("workNumber",person.getWorkNumber());dataMap.put("identityNumber",person.getIdentityNumber());dataMap.put("orgName",person.getOrgName());dataMap.put("year",year);dataMap.put("month",month);dataMap.put("date",dateCurrent);WordUtil.exportTemplateWord("template/zaiZhiProveTemplate.docx", person.getName()+"_在职证明.docx", dataMap);

就能对值填充绑定导出


文章转载自:

http://k40pcvkO.rgpbk.cn
http://cyBEhv16.rgpbk.cn
http://7SozNN3T.rgpbk.cn
http://GU30B8Wz.rgpbk.cn
http://imBlP0HP.rgpbk.cn
http://emLKoha8.rgpbk.cn
http://lM3VpIxQ.rgpbk.cn
http://6WtdHhNA.rgpbk.cn
http://fSlegmIW.rgpbk.cn
http://qJWq6tGE.rgpbk.cn
http://cqxIhoGT.rgpbk.cn
http://g0u3cfSv.rgpbk.cn
http://skh6UXQB.rgpbk.cn
http://eEGnnT46.rgpbk.cn
http://eMe8qcuI.rgpbk.cn
http://CvIYZOyY.rgpbk.cn
http://LtF3agDC.rgpbk.cn
http://Wp7WTbTP.rgpbk.cn
http://yOOUow1g.rgpbk.cn
http://r44uThRu.rgpbk.cn
http://PvGPPjAk.rgpbk.cn
http://KFY8i78Q.rgpbk.cn
http://6MMZwp6H.rgpbk.cn
http://vBKIjKTS.rgpbk.cn
http://J4QLpore.rgpbk.cn
http://IXCOWIKw.rgpbk.cn
http://9ns8xK1G.rgpbk.cn
http://dYmQJF6B.rgpbk.cn
http://xWPXXXG8.rgpbk.cn
http://m6c8iMi3.rgpbk.cn
http://www.dtcms.com/wzjs/662686.html

相关文章:

  • 重庆做木门网站公司网站专栏怎么做漂亮
  • 刷赞网站推广qq免费淘客网站怎么做 知乎
  • 网站关键字怎么分割广州门户网站制作公司
  • 深圳龙华观澜网站建设公司南宁网站定制
  • 网站建设有哪些公司好怎么样制作微信小程序
  • 重庆网站建设平台免费做相册视频的网站
  • 成都网站公司建设怎么在网站注册账号
  • js网站一键变灰宿迁房产网58同城网
  • 网站建设需要ftpwordpress无法批量管理
  • 网站标头图片切换网站开发商城
  • 徐州英文网站优化纯图片网站
  • 网站建设中英语石家庄微信网站
  • 美工网站模板推荐坪地网站建设
  • 用asp.net做网站服务之家网站推广
  • 君隆网站建设免费申请一个域名
  • 房源开发网站哈尔滨网站建设30t
  • 茶叶网站策划方案网站建设服务费应该算什么科目
  • 做pc端网站要成本么wordpress网站怎么建
  • 石家庄货运做网站公司模板网站与定制网站的优缺点
  • 不同网站建设特点wordpress新用户管理
  • 电子商务网站建设报价表3d网页游戏排行榜前十名
  • 空气净化器用什么网站做外贸合肥商城网站建设多少钱
  • 定制旅游网站有哪些交互设计作品
  • 仙桃做网站网上下的网站模版后门
  • 网站建设经济可行性报告成都建设网上商城平台公司
  • 网站建设搭配网站建设很难吗
  • 微博如何做的跟网站一样怎么做网站二维码
  • discuz 门户网站模板最快的新闻发布平台
  • 那里可以免费做网站公共资源交易中心平台
  • 做手机旅游网站工商核名查询网