//由于日志中含有中文,用常用的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(); } }
c# 将日志文件显示在RichTextBox控件里
最新推荐文章于 2025-03-23 07:05:26 发布