本文主要以一個簡單的小例子,描述C# Winform程式異常關閉時,如何進行捕獲,並記錄日誌。 ...
本文主要以一個簡單的小例子,描述C# Winform程式異常關閉時,如何進行捕獲,並記錄日誌。
概述
有時在界面的事件中,明明有try... catch 進行捕獲異常,但是還是會有異常關閉的情況,所以在程式中如何最終的記錄一些無法捕獲的異常,會大大方便問題的定位分析及程式優化。
涉及知識點
以下兩個異常事件,主要應用不同的場景。
- Application.ThreadException 在發生應用程式UI主線程中未捕獲線程異常時發生,觸發的事件。
- AppDomain.CurrentDomain.UnhandledException 當後臺線程中某個異常未被捕獲時觸發。
源代碼
主要程式(Program):
1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 using System.Windows.Forms; 8 9 namespace DemoException 10 { 11 static class Program 12 { 13 /// <summary> 14 /// 應用程式的主入口點。 15 /// </summary> 16 [STAThread] 17 static void Main() 18 { 19 Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException); 20 //處理UI線程異常 21 Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); 22 //處理非線程異常 23 AppDomain.CurrentDomain.UnhandledException +=new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException) ; 24 Application.EnableVisualStyles(); 25 Application.SetCompatibleTextRenderingDefault(false); 26 Application.Run(new FrmMain()); 27 glExitApp = true;//標誌應用程式可以退出 28 } 29 30 /// <summary> 31 /// 是否退出應用程式 32 /// </summary> 33 static bool glExitApp = false; 34 35 /// <summary> 36 /// 處理未捕獲異常 37 /// </summary> 38 /// <param name="sender"></param> 39 /// <param name="e"></param> 40 private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) 41 { 42 43 SaveLog("-----------------------begin--------------------------"); 44 SaveLog("CurrentDomain_UnhandledException"+DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss")); 45 SaveLog("IsTerminating : " + e.IsTerminating.ToString()); 46 SaveLog(e.ExceptionObject.ToString()); 47 SaveLog("-----------------------end----------------------------"); 48 while (true) 49 {//迴圈處理,否則應用程式將會退出 50 if (glExitApp) 51 {//標誌應用程式可以退出,否則程式退出後,進程仍然在運行 52 SaveLog("ExitApp"); 53 return; 54 } 55 System.Threading.Thread.Sleep(2 * 1000); 56 }; 57 } 58 59 /// <summary> 60 /// 處理UI主線程異常 61 /// </summary> 62 /// <param name="sender"></param> 63 /// <param name="e"></param> 64 private static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) 65 { 66 SaveLog("-----------------------begin--------------------------"); 67 SaveLog("Application_ThreadException:" + e.Exception.Message); 68 SaveLog(e.Exception.StackTrace); 69 SaveLog("-----------------------end----------------------------"); 70 } 71 72 public static void SaveLog(string log) 73 { 74 string filePath =AppDomain.CurrentDomain.BaseDirectory+ @"\objPerson.txt"; 75 //採用using關鍵字,會自動釋放 76 using (FileStream fs = new FileStream(filePath, FileMode.Append)) 77 { 78 using (StreamWriter sw = new StreamWriter(fs, Encoding.Default)) 79 { 80 sw.WriteLine(log); 81 } 82 } 83 } 84 } 85 }View Code
出錯的程式:
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Threading; 9 using System.Threading.Tasks; 10 using System.Windows.Forms; 11 12 namespace DemoException 13 { 14 public partial class FrmMain : Form 15 { 16 17 public FrmMain() 18 { 19 InitializeComponent(); 20 } 21 22 private void FrmMain_Load(object sender, EventArgs e) 23 { 24 25 } 26 27 private void btnTestUI_Click(object sender, EventArgs e) 28 { 29 int a = 0; 30 int c = 10 / a; 31 } 32 33 private void btnTest2_Click(object sender, EventArgs e) 34 { 35 Thread t = new Thread(new ThreadStart(() => 36 { 37 int a = 0; 38 int c = 10 / a; 39 })); 40 t.IsBackground = true; 41 t.Start(); 42 } 43 } 44 }View Code