我是靠谱客的博主 超帅花生,最近开发中收集的这篇文章主要介绍java直接输出Excel 页面实现下载,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public String excelDomnload() throws Exception{
		try{
			/*
			String path = GlobalKeys.getFunctionConfig("user_attach_save","/opt/tmp/");
			RegUser ru = ((RegUserLoginInfo) request.getSession().getAttribute(GlobalKeys.REG_USER_IN_SESSION_NAME)).getRegUser();
			String tmpPath = File.separator + "import" + File.separator
			+ ru.getName() + File.separator;
			File targetFolder = new File(path, tmpPath);//合并两个路经
			String fName = request.getParameter("fName");
			*/
			response.setContentType("application/msexcel;");			  
			response.setHeader("Content-Disposition", new String(("attachment;filename="+"error.xls").getBytes("GB2312"), "UTF-8"));
			
			File f = new File("d:/20121211165820140_err.xls");
			//File f = new File(targetFolder.getPath()+File.separator+fName);
			FileInputStream in = new FileInputStream(f);
			byte b[] = new byte[1024];
			int i = 0;
			ServletOutputStream out = response.getOutputStream();
			while((i=in.read(b))!=	-1){
				out.write(b, 0, i);
			}
			out.flush();
			out.close();
		    in.close();
		}catch(Exception e){
	        e.printStackTrace();
		}
		return null;
	}

最后

以上就是超帅花生为你收集整理的java直接输出Excel 页面实现下载的全部内容,希望文章能够帮你解决java直接输出Excel 页面实现下载所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部