狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

【C#.net】WinForm捕獲全局異常(捕獲未處理的異常)

admin
2024年3月19日 11:39 本文熱度 711

背景

我們在做WinForm程序的時候,一般都是對異常進行處理,但是,我們要防止不小心出現未知異常,導致軟件崩潰。也可采集系統未知的異常信息,防止出現異常,也無法下手。于是就有了如這篇文章標題所述的一個簡單的需求。

代碼實現

1、處理未捕獲的異常

  /// <summary>    ///這就是我們要在發生未處理異常時處理的方法,我這是寫出錯詳細信息到文本,如出錯后彈出一個漂亮的出錯提示窗體,給大家做個參考    ///做法很多,可以是把出錯詳細信息記錄到文本、數據庫,發送出錯郵件到作者信箱或出錯后重新初始化等等    ///這就是仁者見仁智者見智,大家自己做了。    /// </summary>    /// <param name="sender"></param>    /// <param name="e"></param>    static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) {
     string str = "";      string strDateInfo = "出現應用程序未處理的異常:" + DateTime.Now.ToString() + "\r\n";      Exception error = e.Exception as Exception;      if (error != null) {        str = string.Format(strDateInfo + "異常類型:{0}\r\n異常消息:{1}\r\n異常信息:{2}\r\n",           error.GetType().Name, error.Message, error.StackTrace);      }      else {        str = string.Format("應用程序線程錯誤:{0}", e);      }      Helper.GetInstance().PlanLog(str, LogType.應用程序異常.ToString());        //frmBug f = new frmBug(str);//友好提示界面      //f.ShowDialog();      MessageBox.Show("發生致命錯誤,請及時聯系作者!", "系統錯誤", MessageBoxButtons.OK, MessageBoxIcon.Error);    }

2、處理UI線程異常

    /// <summary>
    /// 應用程序的主入口點。
    /// </summary>
    [STAThread]
    static void Main() {
      try {
        //可定義多個線程
        Thread _UserMessageThread;
        _UserMessageThread = new Thread(new ThreadStart(LoginManager.GetInstance().test));
        _UserMessageThread.IsBackground = true;
        _UserMessageThread.Start();
        //處理未捕獲的異常
        Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
        //處理UI線程異常
          Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
        //處理非UI線程異常
          AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Xw.Common.Sys.SysConfig.AppExwcutePath = Application.ExecutablePath;
        Xw.Common.Sys.SysConfig.AppStartPath = Application.StartupPath;
        Xw.Common.Sys.SysConfig.Version = "V1.0.0";
        Xw.Common.Sys.SysConfig.SoftFullName = "拍鞋網";
        Xw.Common.Sys.SysConfig.SoftName = "軟件園店";
        if (!Xw.Common.Sys.SysConfig.IsOnlyRunSoft("PaiXie.Pos.Client")) {
          Xw.Common.Sys.MsgBoxWin.ShowInformation("該程序已運行!");
          return;
        }
        Application.Run(new Login());
      }
      catch (Exception ex) {
        string str = "";
        string strDateInfo = "出現應用程序未處理的異常:" + DateTime.Now.ToString() + "\r\n";
        if (ex != null) {
          str = string.Format(strDateInfo + "異常類型:{0}\r\n異常消息:{1}\r\n異常信息:{2}\r\n",
             ex.GetType().Name, ex.Message, ex.StackTrace);
        }
        else {
          str = string.Format("應用程序線程錯誤:{0}", ex);
        }
        Helper.GetInstance().PlanLog(str, LogType.應用程序異常.ToString());
            //frmBug f = new frmBug(str);//友好提示界面
        //f.ShowDialog();
        MessageBox.Show("發生致命錯誤,請及時聯系作者!", "系統錯誤", MessageBoxButtons.OK, MessageBoxIcon.Error);
      }
      }

3、處理非UI線程異常

  /// <summary>    /// 應用程序的主入口點。    /// </summary>    [STAThread]    static void Main() {      try {        //可定義多個線程            Thread _UserMessageThread;                           _UserMessageThread = new Thread(new ThreadStart(LoginManager.GetInstance().test));        _UserMessageThread.IsBackground = true;        _UserMessageThread.Start();
       //處理未捕獲的異常          Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);        //處理UI線程異常          Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);        //處理非UI線程異常          AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);        Application.EnableVisualStyles();        Application.SetCompatibleTextRenderingDefault(false);        Xw.Common.Sys.SysConfig.AppExwcutePath = Application.ExecutablePath;        Xw.Common.Sys.SysConfig.AppStartPath = Application.StartupPath;        Xw.Common.Sys.SysConfig.Version = "V1.0.0";        Xw.Common.Sys.SysConfig.SoftFullName = "拍鞋網";        Xw.Common.Sys.SysConfig.SoftName = "軟件園店";        if (!Xw.Common.Sys.SysConfig.IsOnlyRunSoft("PaiXie.Pos.Client")) {          Xw.Common.Sys.MsgBoxWin.ShowInformation("該程序已運行!");          return;        }        Application.Run(new Login());      }      catch (Exception ex) {        string str = "";        string strDateInfo = "出現應用程序未處理的異常:" + DateTime.Now.ToString() + "\r\n";        if (ex != null) {          str = string.Format(strDateInfo + "異常類型:{0}\r\n異常消息:{1}\r\n異常信息:{2}\r\n",             ex.GetType().Name, ex.Message, ex.StackTrace);        }        else {          str = string.Format("應用程序線程錯誤:{0}", ex);        }        Helper.GetInstance().PlanLog(str, LogType.應用程序異常.ToString());            //frmBug f = new frmBug(str);//友好提示界面        //f.ShowDialog();        MessageBox.Show("發生致命錯誤,請及時聯系作者!", "系統錯誤", MessageBoxButtons.OK, MessageBoxIcon.Error);      }      }

完整代碼

using PaiXie.Pos.Client.Core;using PaiXie.Utils;using System;using System.Collections.Generic;using System.Linq;using System.Threading;using System.Windows.Forms;namespace PaiXie.Pos.Client {  static class Program {     /// <summary>    /// 應用程序的主入口點。    /// </summary>    [STAThread]    static void Main() {      try {        //可定義多個線程            Thread _UserMessageThread;                           _UserMessageThread = new Thread(new ThreadStart(LoginManager.GetInstance().test));        _UserMessageThread.IsBackground = true;        _UserMessageThread.Start();
       //處理未捕獲的異常          Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);        //處理UI線程異常          Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);        //處理非UI線程異常          AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);        Application.EnableVisualStyles();        Application.SetCompatibleTextRenderingDefault(false);        Xw.Common.Sys.SysConfig.AppExwcutePath = Application.ExecutablePath;        Xw.Common.Sys.SysConfig.AppStartPath = Application.StartupPath;        Xw.Common.Sys.SysConfig.Version = "V1.0.0";        Xw.Common.Sys.SysConfig.SoftFullName = "拍鞋網";        Xw.Common.Sys.SysConfig.SoftName = "軟件園店";        if (!Xw.Common.Sys.SysConfig.IsOnlyRunSoft("PaiXie.Pos.Client")) {          Xw.Common.Sys.MsgBoxWin.ShowInformation("該程序已運行!");          return;        }        Application.Run(new Login());      }      catch (Exception ex) {        string str = "";        string strDateInfo = "出現應用程序未處理的異常:" + DateTime.Now.ToString() + "\r\n";        if (ex != null) {          str = string.Format(strDateInfo + "異常類型:{0}\r\n異常消息:{1}\r\n異常信息:{2}\r\n",             ex.GetType().Name, ex.Message, ex.StackTrace);        }        else {          str = string.Format("應用程序線程錯誤:{0}", ex);        }        Helper.GetInstance().PlanLog(str, LogType.應用程序異常.ToString());            //frmBug f = new frmBug(str);//友好提示界面        //f.ShowDialog();        MessageBox.Show("發生致命錯誤,請及時聯系作者!", "系統錯誤", MessageBoxButtons.OK, MessageBoxIcon.Error);      }      }    /// <summary>    ///這就是我們要在發生未處理異常時處理的方法,我這是寫出錯詳細信息到文本,如出錯后彈出一個漂亮的出錯提示窗體,給大家做個參考    ///做法很多,可以是把出錯詳細信息記錄到文本、數據庫,發送出錯郵件到作者信箱或出錯后重新初始化等等    ///這就是仁者見仁智者見智,大家自己做了。    /// </summary>    /// <param name="sender"></param>    /// <param name="e"></param>    static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e) {
     string str = "";      string strDateInfo = "出現應用程序未處理的異常:" + DateTime.Now.ToString() + "\r\n";      Exception error = e.Exception as Exception;      if (error != null) {        str = string.Format(strDateInfo + "異常類型:{0}\r\n異常消息:{1}\r\n異常信息:{2}\r\n",           error.GetType().Name, error.Message, error.StackTrace);      }      else {        str = string.Format("應用程序線程錯誤:{0}", e);      }      Helper.GetInstance().PlanLog(str, LogType.應用程序異常.ToString());        //frmBug f = new frmBug(str);//友好提示界面      //f.ShowDialog();      MessageBox.Show("發生致命錯誤,請及時聯系作者!", "系統錯誤", MessageBoxButtons.OK, MessageBoxIcon.Error);    }    static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) {      string str = "";      Exception error = e.ExceptionObject as Exception;      string strDateInfo = "出現應用程序未處理的異常:" + DateTime.Now.ToString() + "\r\n";      if (error != null) {        str = string.Format(strDateInfo + "Application UnhandledException:{0};\n\r堆棧信息:{1}", error.Message, error.StackTrace);      }      else {        str = string.Format("Application UnhandledError:{0}", e);      }      Helper.GetInstance().PlanLog(str, LogType.應用程序異常.ToString());        //frmBug f = new frmBug(str);//友好提示界面      //f.ShowDialog();      MessageBox.Show("發生致命錯誤,請停止當前操作并及時聯系作者!", "系統錯誤", MessageBoxButtons.OK, MessageBoxIcon.Error);    }  }}

總結

針對異常,我們肯定無法事先全部預知,所以進行全局異常捕獲還是很有必要的。


該文章在 2024/3/19 11:39:14 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved