当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > ASP.NET提供文件下载函数

ASP.NET
如何使用vb6.0来实现中文实名搜索
C#实现Window管道技术
记录下一些关于测试工具NUNIT的链接资料,有兴趣的朋友也可以跳过去看看
编写与.NET属性窗口交互的RAD组件(自序)
asp.net 关于form认证的一般设置:
编写与.NET属性窗口交互的RAD组件(一)
ActiveX控件的打包发布[无证书发布](一)
Visual SourceSafe 6.0 的问题思考
VB报表输出的问题,恳请不吝赐教
证书和签名--试用微软提供的证书测试工具系列
[dotNET]如何利用ConfigurationSettings.AppSettings.GetValues读取配置文件中多个...
使用C#编写DES加密程序的framework
令你的网页速度大大提高
怎样得到一个系统盘的全名,不是字符,是全名,如:本地磁盘(C:)?
r在richtextbox中插入动画/控件
Code: Writing Text to a File (Visual Basic)
算法讨论:哲学家就餐问题
我们所要关注的是什么?
firebird 连接嵌入式版本
从Csharp走到VB.Net(一):MyClass保留字

ASP.NET提供文件下载函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-23   浏览: 81 ::
收藏到网摘: n/a

以下为代码片段:


//输出硬盘文件,提供下载支持大文件、续传、速度限制、资源占用小
//输入参数_Request:Page.Request对象,_Response:Page.Response对象,_fileName:下载文件名,_fullPath:带文件名下载路径,_speed每秒允许下载的字节数
//返回是否成功
publicstaticboolResponseFile(HttpRequest_Request,HttpResponse_Response,string_fileName,string_fullPath,long_speed)
{
try
{
FileStreammyFile=newFileStream(_fullPath,FileMode.Open,FileAccess.Read,FileShare.ReadWrite);
BinaryReaderbr=newBinaryReader(myFile);
try
{
_Response.AddHeader("Accept-Ranges","bytes");
_Response.Buffer=false;
longfileLength=myFile.Length;
longstartBytes=0;

intpack=10240;//10Kbytes
//intsleep=200;//每秒5次即5*10Kbytes每秒
intsleep=(int)Math.Floor(1000*pack/_speed)+1;
if(_Request.Headers["Range"]!=null)
{
_Response.StatusCode=206;
string[]range=_Request.Headers["Range"].Split(newchar[]{'=','-'});
startBytes=Convert.ToInt64(range[1]);
}
_Response.AddHeader("Content-Length",(fileLength-startBytes).ToString());
if(startBytes!=0)
{
_Response.AddHeader("Content-Range",string.Format("bytes{0}-{1}/{2}",startBytes,fileLength-1,fileLength));
}
_Response.AddHeader("Connection","Keep-Alive");
_Response.ContentType="application/octet-stream";
_Response.AddHeader("Content-Disposition","attachment;filename="+HttpUtility.UrlEncode(_fileName,System.Text.Encoding.UTF8));

br.BaseStream.Seek(startBytes,SeekOrigin.Begin);
intmaxCount=(int)Math.Floor((fileLength-startBytes)/pack)+1;

for(inti=0;i<maxCount;i++)
{
if(_Response.IsClientConnected)
{
_Response.BinaryWrite(br.ReadBytes(pack));
Thread.Sleep(sleep);
}
else
{
i=maxCount;
}
}
}
catch
{
returnfalse;
}
finally
{
br.Close();
myFile.Close();
}
}
catch
{
returnfalse;
}
returntrue;
}

调用例


Page.Response.Clear();

boolsuccess=ResponseFile(Page.Request,Page.Response,"filename",@"C:\download.date",1024000);

if(!success)
Response.Write("下载文件出错!");

Page.Response.End();