asp.net使用一般处理程序实现文件下载

2021-06-26 21:03

阅读:608

标签:href   []   方案   方式   map   txt   ade   pos   content   

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

技术分享技术分享
DOCTYPE html>
html>
head>
meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    title>文件下载title>
    meta charset="utf-8" />
head>
body>
    
    a href="App_Data/readme.txt">下载readme.txt文件a>
    br />
    a href="DownloadFileHandler.ashx">下载readme.txt文件a>
body>
html>
View Code

一般处理程序的代码如下

技术分享技术分享
using System.IO;
using System.Web;

namespace Zhong.Web
{
    /// 
    /// DownloadFileHandler 的摘要说明
    /// 
    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;
            }
        }
    }
}
View Code

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

 

 

技术分享

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

技术分享

 

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

asp.net使用一般处理程序实现文件下载

标签:href   []   方案   方式   map   txt   ade   pos   content   

原文地址:http://www.cnblogs.com/godbell/p/7149932.html


评论


亲,登录后才可以留言!