• c# 将日志文件显示在RichTextBox控件里 分类: .NET 20121218 15:54 722人阅读 评论(0) 收藏


    //由于日志中含有中文,用常用的LoadFile方法会含有乱码,所以用这种流的方式,一行一行的读。
                string fullPath = @"F:\comback\Release\log\20121218.Log";
                StringBuilder sb = new StringBuilder("");
                StreamReader streamReader = null;
                try
                {
    
                    streamReader = new StreamReader(fullPath, Encoding.UTF8);
                    string line = streamReader.ReadLine();
                    while (!string.IsNullOrEmpty(line))
                    {
                        sb.Append(line + "\n");
                        line = streamReader.ReadLine();
                    }
    
                    this.richTextBox1.Text = sb.ToString();
                }
                catch (Exception ee)
                {
                    MessageBox.Show("" + ee.Message);
                }
                finally
                {
                    if (streamReader != null)
                    {
                        streamReader.Close();
                    }
                }


    
    
    
        
            

    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    html转义
    mongodb 数据库 基础使用
    xpath基本语法
    HTTP
    JavaScript笔记6-数组新方法
    JavaScript笔记5-事件
    JavaScript笔记3--标识符和保留字
    JavaScript笔记4-数组
    jquery笔记1--选择器
    JavaScript笔记2
  • 原文地址:https://www.cnblogs.com/configman/p/4657572.html
Copyright © 2020-2023  润新知