首页 > 代码库 > java文件下载(有非常详细的注释).
java文件下载(有非常详细的注释).
话不多说,直接贴代码:
//文件下载 public static String downloadFile(File file) { HttpServletResponse response = ServletActionContext.getResponse(); FileInputStream fis = null; BufferedInputStream buff = null; OutputStream out = null; try { /* 如果文件存在 */ if (file.exists()) { //设置为没有缓存 response.reset(); //设置response的编码方式 //response.setContentType("application/x-download"); response.setContentType("application/ms-excel"); //这一句更细化,告诉浏览器要下载的是excel文件 //设置下载文件名 response.setHeader("Content-Disposition", "filename="+new String(file.getName().getBytes(),"UTF-8")); //读出文件到i/o流 fis=new FileInputStream(file); buff=new BufferedInputStream(fis); //从response对象中得到输出流,准备下载 out = response.getOutputStream(); //PrintWriter out = response.getWriter();随便哪句都可以 //以字节的方式写入内容 int i; while((i = buff.read()) != -1){ out.write(i); } //把内容全部推到文档里 out.flush(); }else{ return "download fail";//文件不存在 } } catch (Exception e) { // TODO: handle exception }finally{ try { if (buff != null) buff.close(); if (out != null) out.close(); } catch (IOException e) { return "download fail"; } } return "download success"; }
java文件下载(有非常详细的注释).
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。