码迷,mamicode.com
首页 > 其他好文 > 详细

使用response实现文件下载功能

时间:2014-07-08 00:42:25      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:使用   文件   os   html   io   htm   

response.setContentType("text/html;charset=utf-8");
  response.setCharacterEncoding("utf-8");
  //获取绝对路径.通过ervletContext()
  String path= this.getServletContext().getRealPath("/img/1.jpg");
  //设置请求的头信息,第一参数:头的名称,第二参数:头值,URLEncoder.encode()转编码值
  response.setHeader("content-disposition", "attachment;filename="+URLEncoder.encode(path.substring(path.lastIndexOf("\\")+1),"utf-8") );
  FileInputStream in=new FileInputStream(path);
  byte[] img=new byte[1024];
  int length=0;
  try {
   while ((length=in.read(img, 0, img.length))!=-1) {
    response.getOutputStream().write(img, 0, length);
   }
  } catch (Exception e) {
   e.printStackTrace();
  }finally{
   in.close();
  }

使用response实现文件下载功能,布布扣,bubuko.com

使用response实现文件下载功能

标签:使用   文件   os   html   io   htm   

原文地址:http://www.cnblogs.com/danmao/p/3830462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!