博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Asp.Net文件下载
阅读量:6345 次
发布时间:2019-06-22

本文共 5159 字,大约阅读时间需要 17 分钟。

<%@ WebHandler Language="C#" Class="AttachmentHandler" %>using System;using System.Collections.Generic;using System.Web;using System.Data.SqlClient;using System.Configuration;public class AttachmentHandler : IHttpHandler{    public void ProcessRequest(HttpContext context)    {        string workflowID = context.Request["guid"];        string tableName = context.Request["tb"];        if (string.IsNullOrEmpty(workflowID) || string.IsNullOrEmpty(tableName))            context.Response.End();        using (SqlConnection conn = new SqlConnection(ConfigurationManager.AppSettings["db"]))        {            conn.Open();            var cmdText = string.Format(@"select FileName,Attachment from {0} where WorkflowID='{1}'"                , tableName, workflowID);            SqlCommand cmd = new SqlCommand(cmdText, conn);            SqlDataReader dr = cmd.ExecuteReader();            if (dr.Read())            {                if (!Convert.IsDBNull(dr["Attachment"]))                {                    context.Response.BinaryWrite((byte[])dr["Attachment"]);                    context.Response.AppendHeader("Content-Disposition"                        , string.Format("attachment;filename={0}"                        , HttpUtility.UrlEncode(dr["FileName"].ToString())));                }                dr.Close();                dr = null;                context.Response.End();            }            conn.Close();        }    }    public bool IsReusable    {        get        {            return false;        }    }}

Ref:TransmitFile

View Code
//TransmitFile实现下载         protected void Button1_Click1(object sender, EventArgs e)        {            /*             微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite             下载超过400mb的文件时导致Aspnet_wp.exe进程回收而无法成功下载的问题。             代码如下:             */            string strFileName = "xxx.ppt";            Response.ContentType = "application/x-zip-compressed";            //Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");            string filename = BLL.Config.PART_EM_UPLOAD_DOC + strFileName;            //BLL.Config.PART_EM_UPLOAD_DOC 为路径   ("D:/EMUploadDoc/")            Response.AddHeader("Content-Disposition", "attachment;filename=" +Server.UrlPathEncode(strFileName));           //Server.UrlPathEncode()解决文件名的乱码问题.                       Response.TransmitFile(filename);        }    //WriteFile实现下载    protected void Button2_Click(object sender, EventArgs e)    {        /*         using System.IO;                */        string fileName = "asd.txt";//客户端保存的文件名        string filePath = Server.MapPath("DownLoad/aaa.txt");//路径        FileInfo fileInfo = new FileInfo(filePath);        Response.Clear();        Response.ClearContent();        Response.ClearHeaders();        Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);        Response.AddHeader("Content-Length", fileInfo.Length.ToString());        Response.AddHeader("Content-Transfer-Encoding", "binary");        Response.ContentType = "application/octet-stream";        Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");        Response.WriteFile(fileInfo.FullName);        Response.Flush();        Response.End();    }      //WriteFile分块下载    protected void Button3_Click(object sender, EventArgs e)    {        string fileName = "aaa.txt";//客户端保存的文件名        string filePath = Server.MapPath("DownLoad/aaa.txt");//路径        System.IO.FileInfo fileInfo = new System.IO.FileInfo(filePath);        if (fileInfo.Exists == true)        {            const long ChunkSize = 102400;//100K 每次读取文件,只读取100K,这样可以缓解服务器的压力            byte[] buffer = new byte[ChunkSize];            Response.Clear();            System.IO.FileStream iStream = System.IO.File.OpenRead(filePath);            long dataLengthToRead = iStream.Length;//获取下载的文件总大小            Response.ContentType = "application/octet-stream";            Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName));            while (dataLengthToRead > 0 && Response.IsClientConnected)            {                int lengthRead = iStream.Read(buffer, 0, Convert.ToInt32(ChunkSize));//读取的大小                Response.OutputStream.Write(buffer, 0, lengthRead);                Response.Flush();                dataLengthToRead = dataLengthToRead - lengthRead;            }            Response.Close();        }    }    //流方式下载    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.Flush();        Response.End();    }

 

转载于:https://www.cnblogs.com/ncore/archive/2012/11/12/2766625.html

你可能感兴趣的文章
4939 欧拉函数[一中数论随堂练]
查看>>
MySQL笔记(一)
查看>>
spring boot 包jar运行
查看>>
18年秋季学习总结
查看>>
Effective前端1:能使用html/css解决的问题就不要使用JS
查看>>
网络攻防 实验一
查看>>
由莫名其妙的错误开始---浅谈jquery的dom节点创建
查看>>
磨刀-CodeWarrior11生成的Makefile解析
查看>>
String StringBuffer StringBuilder对比
查看>>
bootstrap随笔点击增加
查看>>
oracle 中proc和oci操作对缓存不同处理
查看>>
[LeetCode] Spiral Matrix 解题报告
查看>>
60906磁悬浮动力系统应用研究与模型搭建
查看>>
指纹获取 Fingerprint2
查看>>
面试题目3:智能指针
查看>>
取消凭证分解 (取消公司下的多个利润中心)
查看>>
flask ORM: Flask-SQLAlchemy【单表】增删改查
查看>>
vim 常用指令
查看>>
nodejs 获取自己的ip
查看>>
Nest.js 处理错误
查看>>