Java自学者论坛

 找回密码
 立即注册

手机号码,快捷登录

恭喜Java自学者论坛(https://www.javazxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,会员资料板块,购买链接:点击进入购买VIP会员

JAVA高级面试进阶训练营视频教程

Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程Go语言视频零基础入门到精通Java架构师3期(课件+源码)
Java开发全终端实战租房项目视频教程SpringBoot2.X入门到高级使用教程大数据培训第六期全套视频教程深度学习(CNN RNN GAN)算法原理Java亿级流量电商系统视频教程
互联网架构师视频教程年薪50万Spark2.0从入门到精通年薪50万!人工智能学习路线教程年薪50万大数据入门到精通学习路线年薪50万机器学习入门到精通教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程MySQL入门到精通教程
查看: 686|回复: 0

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

[复制链接]
  • TA的每日心情
    奋斗
    2024-4-6 11:05
  • 签到天数: 748 天

    [LV.9]以坛为家II

    2034

    主题

    2092

    帖子

    70万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    705612
    发表于 2021-7-4 05:07:44 | 显示全部楼层 |阅读模式

    FileHandler http://www.cnblogs.com/vipsoft/p/3627709.html

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

    //相对路径下载。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;
    }

     两种方法的结合

     public static bool DownLoadFile(string path, string fileName)
            {
                bool result = false;
                string filePath = path + fileName;
                if (File.Exists(filePath))
                {
                    result = true;
                }
                else
                {
                    try
                    { 
                        filePath = HttpContext.Current.Server.MapPath(path + fileName);
                        if (File.Exists(filePath))
                        {
                            result = true;
                        }
                    }
                    catch 
                    {
                        result = false;
                    }
                }
                if (result)
                { 
                    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();  
                    }
                    catch (Exception e)
                    {
                    }
                    finally
                    {
                        HttpContext.Current.Response.End();
                    }
                }
                return result;
            }

     

    根据一些业务逻辑返回相应的状态字符串,如果出现异常做返回“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

    哎...今天够累的,签到来了1...
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|手机版|小黑屋|Java自学者论坛 ( 声明:本站文章及资料整理自互联网,用于Java自学者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

    GMT+8, 2024-5-20 23:06 , Processed in 0.058795 second(s), 29 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2021, Tencent Cloud.

    快速回复 返回顶部 返回列表