ASP.NET实现从服务器下载文件2
转:http://lanhy2000.blog.163.com/blog/static/436786082011105104110713/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 |
public
void DownloadFile( string
path, string
name) { try { System.IO.FileInfo file = new
System.IO.FileInfo(path); Response.Clear(); Response.Charset = "GB2312" ; Response.ContentEncoding = System.Text.Encoding.UTF8; // 添加头信息,为"文件下载/另存为"对话框指定默认文件名 Response.AddHeader( "Content-Disposition" , "attachment; filename="
+ Server.UrlEncode(name)); // 添加头信息,指定文件大小,让浏览器能够显示下载进度 Response.AddHeader( "Content-Length" , file.Length.ToString()); // 指定返回的是一个不能被客户端读取的流,必须被下载 Response.ContentType = "application/ms-excel" ; // 把文件流发送到客户端 Response.WriteFile(file.FullName); // 停止页面的执行 //Response.End(); HttpContext.Current.ApplicationInstance.CompleteRequest(); } catch
(Exception ex) { Response.Write( "<script>alert(‘系统出现以下错误://n"
+ ex.Message + "!//n请尽快与管理员联系.‘)</script>" ); } } |
在网上找了一些这个问题产生的原因:如果使用 Response.End、Response.Redirect 或 Server.Transfer 方法,将出现ThreadAbortException 异常。您可以使用 try-catch 语句捕获此异常。Response.End 方法终止页的执行,并将此执行切换到应用程序的事件管线中Application_EndRequest 事件。不执行 Response.End 后面的代码行。此问题出现在 Response.Redirect 和 Server.Transfer 方法中,因为这两种方法均在内部调用 Response.End。
提供的解决方法有:
对于 Response.End,调用 HttpContext.Current.ApplicationInstance.CompleteRequest() 方法而不是 Response.End 以跳过 Application_EndRequest 事件的代码执行。
对于 Response.Redirect,请使用重载 Response.Redirect(String url, bool endResponse),该重载对 endResponse 参数传递 false 以取消对 Response.End 的内部调用。例如:
Response.Redirect ("nextpage.aspx", false);
catch (System.Threading.ThreadAbortException e)
{
throw;
}
接下来就可以通过其他函数或者事件调用这个函数来下载服务器上的文件了...
protected void btnOutput_Click(object sender, EventArgs e)
{
try
{
string strPath = Server.MapPath("/") + "Download//学生基本信息模版.xls";
DownloadFile(strPath, "学生基本信息模版.xls");
}
catch (Exception exp)
{
Response.Write("<script>alert(‘系统出现以下错误://n" + exp.Message + "!//n请尽快与管理员联系.‘)</script>");
}
}
从这个事件可以看出DownloadFile函数的第一个参数为文件的绝对路径...不然程序会报错。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。