1.先定义一个记录错误日志的类,类内容如下
using
System.IO;
namespace CSST.WMS.UI.Utility
{
/**//// <summary>
/// 文本日志记录类,成员函数均为静态函数,直接调用即可
/// </summary>
public class LogMsg
{
常量定义#region 常量定义
/**//// <summary>
/// 程序目录名
/// (一般根据需要修改此变量值即可)
/// </summary>
private const string FolderName = "EventLog";
/**//// <summary>
/// 日志文件名
/// (全名或后缀名,按日分类时为后缀名)
/// </summary>
private const string logFileName = "Log.Log";
#endregion
构造函数#region 构造函数
/**//// <summary>
/// 私有构造函数,不允许直接实例化
/// </summary>
private LogMsg()
{
//
}
#endregion
记录错误日志到文本文件到我的文档目录#region 记录错误日志到文本文件到我的文档目录
/**//// <summary>
/// 记录错误日志到文本文件到我的文档目录
/// 按月分,每月产生一个日志文件
/// </summary>
/// <param name="text">日志内容</param>
static public void WriteLogToApplicationFolderByMonth(string text)
{
//string folderPath = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\My Tests\\Log1";
//格式化文件夹字符串
string folderPath = string.Format("{0}\\{1}\\Year_{2}", System.Windows.Forms.Application.StartupPath, FolderName, System.DateTime.Now.ToString("yyyy"));
if (!Directory.Exists(folderPath))
{
Directory.CreateDirectory(folderPath);
}
//格式化文件路径字符串
string filePath = string.Format("{0}\\Month_{1}_{2}", folderPath, System.DateTime.Today.ToString("MM"), logFileName);
LogToFile(filePath, text);
}
#endregion
记录文本到文本文件#region 记录文本到文本文件
/**//// <summary>
/// 记录文本到文本文件(根据微软MSDN2005帮助文档System.IO.File.AppendText()提供的示例修改)
/// </summary>
/// <param name="filePath">文件路径</param>
/// <param name="text">记录内容</param>
static private void LogToFile(string filePath, string text)
{
//-------------------
StreamWriter sw = null;
try
{
if (!File.Exists(filePath))
{
sw = File.CreateText(filePath);
}
else
{
sw = File.AppendText(filePath);
}
//设置写入文件的文本
//string msg = string.Format("{0}---------Log Time:{1}--------{0}{2}", System.Environment.NewLine, System.DateTime.Now.ToString(), text);
string msg = string.Format("\r\n---------Log Time:{0}--------\r\n{1}", System.DateTime.Now.ToString(), text);
sw.WriteLine(msg);
//sw.WriteLine(text);
}
finally
{
if (sw != null)
{
sw.Close();
sw = null;
}
}
}
#endregion
//-------------
}
}
namespace CSST.WMS.UI.Utility
{
/**//// <summary>
/// 文本日志记录类,成员函数均为静态函数,直接调用即可
/// </summary>
public class LogMsg
{
常量定义#region 常量定义
/**//// <summary>
/// 程序目录名
/// (一般根据需要修改此变量值即可)
/// </summary>
private const string FolderName = "EventLog";
/**//// <summary>
/// 日志文件名
/// (全名或后缀名,按日分类时为后缀名)
/// </summary>
private const string logFileName = "Log.Log";
#endregion
构造函数#region 构造函数
/**//// <summary>
/// 私有构造函数,不允许直接实例化
/// </summary>
private LogMsg()
{
//
}
#endregion
记录错误日志到文本文件到我的文档目录#region 记录错误日志到文本文件到我的文档目录
/**//// <summary>
/// 记录错误日志到文本文件到我的文档目录
/// 按月分,每月产生一个日志文件
/// </summary>
/// <param name="text">日志内容</param>
static public void WriteLogToApplicationFolderByMonth(string text)
{
//string folderPath = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\My Tests\\Log1";
//格式化文件夹字符串
string folderPath = string.Format("{0}\\{1}\\Year_{2}", System.Windows.Forms.Application.StartupPath, FolderName, System.DateTime.Now.ToString("yyyy"));
if (!Directory.Exists(folderPath))
{
Directory.CreateDirectory(folderPath);
}
//格式化文件路径字符串
string filePath = string.Format("{0}\\Month_{1}_{2}", folderPath, System.DateTime.Today.ToString("MM"), logFileName);
LogToFile(filePath, text);
}
#endregion
记录文本到文本文件#region 记录文本到文本文件
/**//// <summary>
/// 记录文本到文本文件(根据微软MSDN2005帮助文档System.IO.File.AppendText()提供的示例修改)
/// </summary>
/// <param name="filePath">文件路径</param>
/// <param name="text">记录内容</param>
static private void LogToFile(string filePath, string text)
{
//-------------------
StreamWriter sw = null;
try
{
if (!File.Exists(filePath))
{
sw = File.CreateText(filePath);
}
else
{
sw = File.AppendText(filePath);
}
//设置写入文件的文本
//string msg = string.Format("{0}---------Log Time:{1}--------{0}{2}", System.Environment.NewLine, System.DateTime.Now.ToString(), text);
string msg = string.Format("\r\n---------Log Time:{0}--------\r\n{1}", System.DateTime.Now.ToString(), text);
sw.WriteLine(msg);
//sw.WriteLine(text);
}
finally
{
if (sw != null)
{
sw.Close();
sw = null;
}
}
}
#endregion
//-------------
}
}
记录错误内容同时记录下出错时间,方便程序查错
2.在确认可能产生错误地方使用以下语捕获错误并记录到日志
try
{
dt = CSST.WMS.DAL.DealerDAL.SelectAll().Tables[0];
this.dataGridView.DataSource = dt;
}
catch (SqlException ex)
{
Utility.LogMsg.WriteLogToApplicationFolderByMonth(ex.ToString());
}
catch (Exception ex)
{
Utility.LogMsg.WriteLogToApplicationFolderByMonth(ex.ToString());
}
{
dt = CSST.WMS.DAL.DealerDAL.SelectAll().Tables[0];
this.dataGridView.DataSource = dt;
}
catch (SqlException ex)
{
Utility.LogMsg.WriteLogToApplicationFolderByMonth(ex.ToString());
}
catch (Exception ex)
{
Utility.LogMsg.WriteLogToApplicationFolderByMonth(ex.ToString());
}
3.一般来说并不是所有的错误我们都可以捕获得到,这种情况下,我们可以为Application的ThreadException事件编写错误日志记录功能来实记录下所有在运行时发生的错误...
LogMsg日志记录类下载