使用Response使用文件下载

本文介绍了使用ASP.NET进行文件的流式下载方法,包括小于400MB文件的流式下载实现及大于400MB文件的下载解决方案。通过Button4_Click事件展示了如何将文件读取为字节数组并发送到客户端,以及使用Response.TransmitFile方法解决大文件下载问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

    //流方式下载
    protected void Button4_Click(object sender, EventArgs e)
    {
        string fileName = "aaa.txt";//客户端保存的文件名
        string filePath = Server.MapPath("DownLoad/aaa.txt");//要下载的文件路径

        //将文件以流的方式读取到字节数组中
        FileStream fs = new FileStream(filePath, FileMode.Open);
        byte[] bytes = new byte[(int)fs.Length];
        fs.Read(bytes, 0, bytes.Length);
        fs.Close();
        //设置输出流的类型为流
        Response.ContentType = "application/octet-stream";
        //通知浏览器下载文件而不是打开
        Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
       //将字节写进输出流
        Response.BinaryWrite(bytes);
   
        //以下两个操作类似于Response.BufferOutPut=false;
        //清空缓冲区 
        Response.Flush();
        //终止输出
        Response.End();
    }

    protected void Button1_Click(object sender, EventArgs e)
    {
        /*
        微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite
        下载超过400mb的文件时导致Aspnet_wp.exe进程回收而无法成功下载的问题。
        代码如下:
        */
        //设置输出流的类型为压缩文件
        Response.ContentType = "application/x-zip-compressed";
        //为输出流添加头信息。
        Response.AddHeader("Content-Disposition", "attachment;filename=z.zip");
        //获取到要下载文件的绝对路径
        string filename = Server.MapPath("DownLoad/z.zip");
        //下载
        Response.TransmitFile(filename);
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值