VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > C#编程 >
  • C#教程之C# -- 多线程向同一文件写入

本站最新发布   C#从入门到精通
试听地址  
https://www.xin3721.com/eschool/CSharpxin3721/

1. 多线程向同一文件写入Log.

复制代码
public delegate void AsyncLog(string str1, string str2);

private void Test()
{
    Console.WriteLine("Test Start...");

    for (int i = 0; i < 100; i++)
    {
        AsyncLog asyLog1 = new AsyncLog(WriteLog);
        asyLog1.BeginInvoke("EventActionA" + i.ToString(), "EventContentA" + i.ToString(), null, null);

        AsyncLog asyLog2 = new AsyncLog(WriteLog);
        asyLog2.BeginInvoke("EventActionB" + i.ToString(), "EventContentB" + i.ToString(), null, null);

        AsyncLog asyLog3 = new AsyncLog(WriteLog);
        asyLog3.BeginInvoke("EventActionC" + i.ToString(), "EventContentC" + i.ToString(), null, null);
    }

    Console.WriteLine("Test End...");
}
复制代码
复制代码
public static object lockObject = new object();

private void WriteLog(string strEventType, string strEventContent)
{
    lock (lockObject)
    {
        Console.WriteLine("Write Log start... ThreadID:{0}", Thread.CurrentThread.ManagedThreadId);

        string strLogPath = string.Format("D:\\Log\\Log{0}.log", DateTime.Now.ToString("yyyy-MM-dd"));

        if (!File.Exists(strLogPath))
        {
            File.Create(strLogPath).Close();
        }

        FileStream fs = new FileStream(strLogPath, FileMode.Append, FileAccess.Write);
        StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);

        sw.WriteLine(string.Format("{0}  {1}", strEventType, strEventContent));

        sw.Close();
        fs.Close();

        Console.WriteLine("Write Log End   ThreadID:{0}", Thread.CurrentThread.ManagedThreadId);
    }
}
复制代码

相关教程