当前位置: 移动技术网 > IT编程>开发语言>.net > Asp.net利用一般处理程序实现文件下载功能

Asp.net利用一般处理程序实现文件下载功能

2017年12月08日  | 移动技术网IT编程  | 我要评论

数码宝贝第四部国语全集,现任国务院总理是谁,lg微波炉维修点

首先有一个html页面,页面有一个链接,点击链接弹出文件下载/保存(类似迅雷下载链接)

<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
 <title>文件下载</title>
 <meta charset="utf-8" />
</head>
<body>
 <!--该方式不行,1:如果访问的是类似文本等浏览器可以处理的文件,则是浏览器打开显示的方式,并不是文件下载;2:如果访问的是app_data文件夹里的文件,由于.net的机制不允许访问app_data文件夹资源,所以会报“请求筛选模块被配置为拒绝包含 hiddensegment 节的 url 中的路径。”-->
 <a href="app_data/readme.txt" rel="external nofollow" >下载readme.txt文件</a>
 <br />
 <a href="downloadfilehandler.ashx" rel="external nofollow" >下载readme.txt文件</a>
</body>
</html>

一般处理程序的代码如下

using system.io;
using system.web;
namespace zhong.web
{
 /// <summary>
 /// downloadfilehandler 的摘要说明
 /// </summary>
 public class downloadfilehandler : ihttphandler
 {
  public void processrequest(httpcontext context)
  {
   string filepath = context.server.mappath("~/app_data/readme.txt");
   filestream fs = new filestream(filepath, filemode.open);
   byte[] bytes = new byte[fs.length];
   fs.read(bytes, 0, bytes.length);
   fs.dispose();
   context.response.contenttype = "application/octet-stream";
   context.response.addheader("content-disposition", "attachment; filename=readme.txt");
   context.response.binarywrite(bytes);
   context.response.flush();
   //大文件下载的解决方案
   //context.response.contenttype = "application/x-zip-compressed";
   //context.response.addheader("content-disposition", "attachment;filename=z.zip");
   //string filename = server.mappath("~/app_data/move.zip");
   //context.response.transmitfile(filename);
  }
  public bool isreusable
  {
   get
   {
    return false;
   }
  }
 }
}

点击第一个链接访问,显示如下:

点击第二个链接访问,下载文件:

由于我之前已经测试过一次,所以这次下载时命名为readme(1).txt

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网