0

今天我将日志写入文本文件日志:

/*----------------------------------------------------------------
 * Module Name  : Logger
 * Description  : A logger
 * Author       : Danny
 * Date         : 10/02/2010
 * Revision     : 1.00
 * --------------------------------------------------------------*/


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Windows.Forms;
using System.Drawing;
using System.Threading;
/*
 *  Introduction :
 * 
 *  This module is a logger. any module can use this 
 *  module to log its actions.
 * 
 * 
 * */

        /*----------------------------------------
         *   P R I V A T E    D E F I N I T I O N S 
         * ---------------------------------------*/


namespace DannyGeneral
{
    class Logger
    {
        /*----------------------------------------
         *   P R I V A T E     C O N S T A N T S 
         * ---------------------------------------*/
        static string log_file_name = @"\logger.txt";
        static string full_path_log_file_name;
        static string path_log;
        static Mutex mut;
        /*----------------------------------------
         *   P R I V A T E     V A R I A B L E S 
         * ---------------------------------------*/

        /*---------------------------------
         *   P U B L I C   M E T H O D S 
         * -------------------------------*/

        /*----------------------------------------------------------
         * Function     : Logger
         * Description  : static Constructor
         * Parameters   : none
         * Return       : none
         * --------------------------------------------------------*/
        static Logger()
        {
            mut = new Mutex();
            path_log = Path.GetDirectoryName(Application.LocalUserAppDataPath)+ @"\log";
            if (!Directory.Exists(path_log))
            {
                Directory.CreateDirectory(path_log);
            }
            full_path_log_file_name = path_log + log_file_name;
        }

        /*----------------------------------------------------------
         * Function     : Write
         * Description  : writes a string to the log file
         *                This functions will add time and date and
         *                end of line chars to the string written to
         *                the file.
         * Parameters   : string to write to the file.
         * Return       : none
         * --------------------------------------------------------*/
        public static void Write(string str)
        {
            if (mut.WaitOne() == false)
            {
                return;
            }
            else
            {

                using (StreamWriter sw = new StreamWriter(full_path_log_file_name, true))
                {
                    sw.Write(DateTime.Now.ToShortDateString() + "--" + DateTime.Now.ToShortTimeString() + " ==> " + str);
                    sw.WriteLine();
                    sw.Close();
                }
            }
            mut.ReleaseMutex();
        }
        public static void exist()
        {
            if (!File.Exists(path_log + log_file_name))
            {
                StreamWriter sw = new StreamWriter(path_log + log_file_name);
                sw.Write(DateTime.Now.ToShortDateString()+"--"+DateTime.Now.ToShortTimeString()+" ==> "+"First Time The Log File Was Created"+Environment.NewLine);
                sw.WriteLine();
                sw.Close();
            }
        }
        public static void newEmptyLine()
        {
            StreamWriter sw = new StreamWriter(path_log + log_file_name,true);
            sw.WriteLine();
            sw.Close();
        }

        public static string LoggerPath()
        {
            string path = path_log + log_file_name;
            return path;
        }

        /*---------------------------------
         *   P R I V A T E    M E T H O D S 
         * -------------------------------*/

    }



}

而是将它写入一个简单的文本文件并在程序运行时使用 Process 和 notepad.exe 查看文件,我想也许还有另一种查看日志文件的方法,但里面有颜色?像richTextBox 这样的东西,所以我可以在文件中用另一种颜色绘制每一行。

并且它将像现在使用记事本一样快速打开。

4

4 回答 4

3

您不能拥有“带颜色”的文本文件。纯文本没有格式。

您将需要编写为具有格式的格式 - 例如 RTF 或 HTML 将起作用。

可以自定义您的日志和编程编辑器(例如 notepad++)来为您做一些语法高亮。

于 2012-09-01T19:45:30.840 回答
2

记事本和纯文本不理解颜色。

如果它们对您很重要,您需要将日志写入某种格式化文件;例如:HTML、RTF 等。

于 2012-09-01T19:44:08.990 回答
0

如果您有自己的应用程序内对话框/表单来查看日志文件,您还可以编写特定的分隔文本信息,用于解析并用于日志条目行着色。

我写了一个应用程序就是这样做的。

日志文件是带有 .log 文件扩展名的纯 ASCII 文本。对于 .log 文件,我更喜欢纯 ASCII 文本,因为这是该文件类型的行业标准,因为它通常与 Windows 记事本相关联。

日志条目的格式为制表符分隔:日期/时间、条目类型(信息、警告、错误等)和条目文本消息。

当用户在应用程序中打开查看日志表单时,我读取并解析制表符分隔的日志文件数据,并使用所有条目填充多列 ListView 控件,使用条目类型字段来确定 ListView 项的图标图像及其文本颜色,例如。黑色表示信息,黄色表示警告,红色表示错误。

于 2013-07-15T19:25:22.420 回答
0

具有可配置颜色突出显示的出色日志文件查看器... http://www.baremetalsoft.com/baretail/

于 2012-09-01T20:09:29.223 回答