首页 > 其他 > 详细

C# 指定物理目录下载文件,Response.End导致“正在中止线程”异常的问题

时间:2014-01-16 23:27:07      阅读:547      评论:0      收藏:0      [点我收藏+]

UpdatePanel无法导出下载文件: http://www.cnblogs.com/vipsoft/p/3298299.html

bubuko.com,布布扣
//相对路径下载。path: ~/DownLoad/
//<add key="DownLoadPath" value="~/DownLoad/"/>
public static bool DownLoadFile(string path, string fileName)
{
    bool result = false; 
    try
    {
        string filePath = HttpContext.Current.Server.MapPath(path + fileName);
        if (File.Exists(filePath))
        { 
            FileInfo fileInfo = new FileInfo(filePath);
            HttpContext.Current.Response.Clear();
            HttpContext.Current.Response.ClearContent();
            HttpContext.Current.Response.ClearHeaders();
            HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
            HttpContext.Current.Response.AddHeader("Content-Length", fileInfo.Length.ToString());
            HttpContext.Current.Response.AddHeader("Content-Transfer-Encoding", "binary");
            HttpContext.Current.Response.ContentType = "application/octet-stream";
            HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
            HttpContext.Current.Response.WriteFile(fileInfo.FullName);
            HttpContext.Current.Response.Flush(); 
            HttpContext.Current.Response.End();
            result = true;
        }
    }
    catch
    { 
    } 
    return result;
}
 

//物理路径下载。path: D:\DownLoad//<add key="DownLoadPath" value="D:\DownLoad\"/>
public static bool DownLoadFile(string path, string fileName)
{
    bool result = false;
    string filePath = path + fileName;
    if (File.Exists(filePath))
    { 
        try
        {
            //string filePath = HttpContext.Current.Server.MapPath(path + fileName);
            
            FileInfo fileInfo = new FileInfo(filePath);
            HttpContext.Current.Response.Clear();
            HttpContext.Current.Response.ClearContent();
            HttpContext.Current.Response.ClearHeaders();
            HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
            HttpContext.Current.Response.AddHeader("Content-Length", fileInfo.Length.ToString());
            HttpContext.Current.Response.AddHeader("Content-Transfer-Encoding", "binary");
            HttpContext.Current.Response.ContentType = "application/octet-stream";
            HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
            HttpContext.Current.Response.WriteFile(fileInfo.FullName);
            HttpContext.Current.Response.Flush(); 
            result = true; 
        }
        catch (Exception e)
        {
        }
        finally
        {
            HttpContext.Current.Response.End();    //解决 ThreadAbortException 异常问题

        }
    } 
    return result;
}
bubuko.com,布布扣

 

根据一些业务逻辑返回相应的状态字符串,如果出现异常做返回“error”,我预期它返回“状态1”,结果测试时发现
AJAX回调的结果是“状态1error”,它居然抛出异常了!
google后得知:Response.End 方法终止页的执行,并将此执行切换到应用程序的事件管线中的
Application_EndRequest 事件,同时抛出ThreadAbortException 异常,异常信息为“正在中止线程”。另外
Response.Redirect、Server.Transfer方法也会出现这个问题,因为它们内部调用了Response.End 方法。
它给出的解决方案是使用HttpContext.Current.ApplicationInstance.CompleteRequest 方法以跳过
Application_EndRequest 事件的代码执行,但是我试了后发现虽然不抛出异常了,但是页面后面的代码依然会执行,
达不到Response.End的效果。

Response.End导致“正在中止线程”异常的问题,来源:

http://www.cnblogs.com/jintianhu/archive/2011/02/16/1952833.html

C# 指定物理目录下载文件,Response.End导致“正在中止线程”异常的问题

原文:http://www.cnblogs.com/vipsoft/p/3521958.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!