用java导出word并下载文件

public void download() {
		Configuration configuration = new Configuration();
		configuration.setDefaultEncoding("utf-8");                                       //注意这里要设置编码

		configuration.setServletContextForTemplateLoading(request.getSession()
				.getServletContext(), "/template");

		Template t = null;
		try {
			t = configuration.getTemplate("template1.ftl","utf-8");                  // 文件名 还有这里要设置编码
		} catch (Exception e) {
			e.printStackTrace();
		}
		File outFile = null;
		Writer out = null;
		String filename = "";
		try {
			filename = exportMap.get("unitname") + ""+exportMap.get("month")+"月资源运营报告";
			outFile = File.createTempFile(filename, ".doc");
			out = new BufferedWriter(new OutputStreamWriter(
					new FileOutputStream(outFile),"utf-8"));                 //还有这里要设置编码
			
		} catch (Exception e1) {
			e1.printStackTrace();
		}

		try {
			t.process(exportMap, out);
		} catch (Exception e) {
			e.printStackTrace();
		}
		try {
			out.flush();
			out.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
		InputStream fis = null;
		OutputStream toClient = null;
		try {
			fis = new BufferedInputStream(new FileInputStream(outFile));
			byte[] buffer = new byte[fis.available()];
			fis.read(buffer);
			fis.close();
			// 清空response
			response.reset();
			// 设置response的Header
			filename = URLEncoder.encode(filename, "utf-8");                                  //这里要用URLEncoder转下才能正确显示中文名称
			response.addHeader("Content-Disposition", "attachment;filename=" + filename+".doc");
			response.addHeader("Content-Length", "" + outFile.length());
			toClient = new BufferedOutputStream(response.getOutputStream());
			response.setContentType("application/octet-stream");
			toClient.write(buffer);
			toClient.flush();
		} catch (Exception e) {
			e.printStackTrace();
		} finally{
			try {
				if(fis!=null){
					fis.close();
				}
			} catch (IOException e) {
				e.printStackTrace();
			}
			try {
				if(toClient!=null){
					toClient.close();
				}
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
	}

首先装word2003,然后把word另存为xml文件,改其中的动态显示的部分为el表达式形式,如${unitname},然后再把xml文件改名成ftl文件做成模版,使用freemaker这些都不用多说。看代码.





评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值