asp.net中大文件下载

Posted syp1blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net中大文件下载相关的知识,希望对你有一定的参考价值。

因为IIS支持的最大文件为int32的最大值位数的文件下载,所以,超过2G的文件无法通过IIS进行下载。

通过网上查找的资料,如下可实现文件的下载,使用filestream进行下载。

        public void download()
        {
            System.IO.Stream iStream = null;

            byte[] buffer = new Byte[10000];//设置大小
            int length;
            long dataToRead;
            string filepath = Server.MapPath("~/Upload/XXX/YYY.rar");//文件的路径
            string filename = System.IO.Path.GetFileName(filepath);

            try
            {
                iStream = new System.IO.FileStream(filepath, FileMode.Open, FileAccess.Read);
                dataToRead = iStream.Length;

                Response.Clear();
                Response.ClearHeaders();
                Response.ClearContent();
                Response.ContentType = "application/unknow"; 
                Response.AddHeader("Content-Length", dataToRead.ToString());
                Response.AddHeader("Content-Disposition", "attachment; filename=" + filename);

                while (dataToRead > 0)
                {
                    if (Response.IsClientConnected)
                    {
                        length = iStream.Read(buffer, 0, 10000);
                        Response.OutputStream.Write(buffer, 0, length);
                        Response.Flush();

                        buffer = new Byte[10000];
                        dataToRead = dataToRead - length;
                    }
                    else
                    {
                        dataToRead = -1;
                    }
                }
            }
            catch (Exception ex)
            {
                Response.Write("Error : " + ex.Message);
            }
            finally
            {
                if (iStream != null)
                {
                    iStream.Close();
                }

                Response.End();
            }
        }  

 

以上是关于asp.net中大文件下载的主要内容,如果未能解决你的问题,请参考以下文章

asp.net页面实用代码片段

对 Asp.Net App_Code 文件夹中的源代码进行更改时,Visual Studio 挂起

使用片段 (#) 重定向链接 - asp.net

java 注册过程 - android片段,Asp.net WebApi

asp.net 使用正则表达式验证包含打开/关闭括号片段的属性字符串

java 登录过程 - android片段,异步任务登录,Asp.net控制器,存储库