前言
上篇文章我提供了一种方案可以供我们捕获单线程程序中的所有未处理异常。但是如果程序是多线程,那么新增线程出现了异常上个方案就无能为力了。本着方案总比问题多的态度,我再给大家提供一种新的方案,供大家参考。处理多线程程序的全局异常demo
好了下面直接上代码:using System; using System.Security.Permissions; using System.Threading; using System.Windows.Forms; namespace TestManyThreadException { static class Program { [SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.ControlAppDomain)] static void Main() { ThreadExceptionHandler handler = new ThreadExceptionHandler(); // 设置没有没捕获的异常在这里强制被捕获 Application.SetUnhandledExceptionMode(UnhandledExceptionMode.Automatic); // 注册UI线程异常事件 Application.ThreadException += handler.Form1_UIThreadException; //注册非ui线程异常事件 AppDomain.CurrentDomain.UnhandledException +=handler.CurrentDomain_UnhandledException; Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } internal class ThreadExceptionHandler { /// <summary> /// 捕获UI线程的异常 /// </summary> /// <param name="sender"></param> /// <param name="t"></param> public void Form1_UIThreadException(object sender, ThreadExceptionEventArgs t) { DialogResult result = DialogResult.Cancel; try { result = ShowThreadExceptionDialog("Windows Forms UI错误", t.Exception); } catch { try { MessageBox.Show("严重的错误", "Windows Forms UI错误", MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Stop); } finally { Application.Exit(); } } // 点中止时退出程序 if (result == DialogResult.Abort) Application.Exit(); } /// <summary> /// 捕获非ui线程的异常, /// </summary> /// <param name="sender"></param> /// <param name="e"></param> public void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { DialogResult result = DialogResult.Cancel; try { Exception ex = (Exception)e.ExceptionObject; result = ShowThreadExceptionDialog("非UI线程错误", ex); } catch (Exception exc) { try { MessageBox.Show("严重的非UI线程错误:" + exc.Message, "非UI线程错误", MessageBoxButtons.OK, MessageBoxIcon.Stop); } finally { Application.Exit(); } } // 点中止时退出程序 if (result == DialogResult.Abort) Application.Exit(); } /// <summary> /// 创建错误信息并显示 /// </summary> /// <param name="title"></param> /// <param name="e"></param> /// <returns></returns> private DialogResult ShowThreadExceptionDialog(string title, Exception e) { string errorMsg = "应用程序错误,请联系管理员," + "错误信息: "; errorMsg = errorMsg + e.Message + " Stack Trace: " + e.StackTrace; //在这边记下日志,一般情况下我们可以自定义日志 TODO return MessageBox.Show(errorMsg, title, MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Stop); } } }
using System; using System.Threading; using System.Windows.Forms; namespace TestManyThreadException { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, System.EventArgs e) { throw new IndexOutOfRangeException("无效的异常操作"); } private void button2_Click(object sender, System.EventArgs e) { Thread th = new Thread(new ThreadStart(ThreadStart1)); th.Start(); } private void ThreadStart1() { throw new FormatException("多线程异常,格式异常"); } } }
好了,运行上面的代码,直接点击button2,然后就会出现如下界面:
[caption id="attachment_1229" align="alignnone" width="871"] 捕获全局异常2[/caption] button1的按钮结果就展示了,上篇文章中已经展示过了。这次仅仅是新增了非UI线程的代码而已。