ASP.NET文件下载函数(好用的东东)

本文介绍了一种在ASP.NET中实现文件下载的方法,通过自定义的ResponseFile函数,可以支持断点续传并确保所有类型文件下载时都会弹出保存对话框。

在你的Page_Load中添加这样的代码:

None.gif Page.Response.Clear();
None.gif 
bool success = ResponseFile(Page.Request, Page.Response, "目的文件名称"@"源文件路径"1024000);
None.gif 
if (!success)
None.gif     Response.Write(
"下载文件出错!");
None.gifPage.Response.End();

文件下载函数代码为:
None.gifpublic static bool ResponseFile(HttpRequest _Request,HttpResponse _Response,string _fileName,string _fullPath, long _speed)
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif{
InBlock.gif        
try
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            FileStream myFile 
= new FileStream(_fullPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
InBlock.gif            BinaryReader br 
= new BinaryReader(myFile);
InBlock.gif            
try
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _Response.AddHeader(
"Accept-Ranges""bytes");
InBlock.gif                _Response.Buffer 
= false;
InBlock.gif                
long fileLength = myFile.Length;
InBlock.gif                
long startBytes = 0;
InBlock.gif     
InBlock.gif                
double pack = 10240//10K bytes
InBlock.gif                
//int sleep = 200;   //每秒5次   即5*10K bytes每秒
InBlock.gif
                int sleep = (int)Math.Floor(1000 * pack / _speed) + 1;
InBlock.gif                
if (_Request.Headers["Range"!= null)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    _Response.StatusCode 
= 206;
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
string[] range = _Request.Headers["Range"].Split(new char[] dot.gif{'=''-'});
InBlock.gif                    startBytes 
= Convert.ToInt64(range[1]);
ExpandedSubBlockEnd.gif                }

InBlock.gif                _Response.AddHeader(
"Content-Length", (fileLength - startBytes).ToString());
InBlock.gif                
if (startBytes != 0)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    
//Response.AddHeader("Content-Range", string.Format(" bytes {0}-{1}/{2}", startBytes, fileLength-1, fileLength));
ExpandedSubBlockEnd.gif
                }

InBlock.gif                _Response.AddHeader(
"Connection""Keep-Alive");
InBlock.gif                _Response.ContentType 
= "application/octet-stream";
InBlock.gif                _Response.AddHeader(
"Content-Disposition","attachment;filename=" + HttpUtility.UrlEncode(_fileName,System.Text.Encoding.UTF8) );
InBlock.gif             
InBlock.gif                br.BaseStream.Seek(startBytes, SeekOrigin.Begin);
InBlock.gif                
int maxCount = (int) Math.Floor((fileLength - startBytes) / pack) + 1;
InBlock.gif
InBlock.gif                
for (int i = 0; i < maxCount; i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    
if (_Response.IsClientConnected)
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
dot.gif{
InBlock.gif                        _Response.BinaryWrite(br.ReadBytes(
int.Parse(pack.ToString())));
InBlock.gif                        Thread.Sleep(sleep);
ExpandedSubBlockEnd.gif                    }

InBlock.gif                    
else
ExpandedSubBlockStart.gifContractedSubBlock.gif                    
dot.gif{
InBlock.gif                        i
=maxCount; 
ExpandedSubBlockEnd.gif                    }

ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

InBlock.gif            
catch
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif             
return false;
ExpandedSubBlockEnd.gif            }

InBlock.gif            
finally
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                br.Close();
InBlock.gif
InBlock.gif                myFile.Close();
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif        
catch
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return false;
ExpandedSubBlockEnd.gif        }

InBlock.gif        
return true;
ExpandedBlockEnd.gif    }

这样就实现了文件下载时,不管是什么格式的文件,都能够弹出打开/保存窗口.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值