Chinaunix首页 | 论坛 | 博客
  • 博客访问: 12839149
  • 博文数量: 1293
  • 博客积分: 13501
  • 博客等级: 上将
  • 技术积分: 17974
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-08 18:11
文章分类

全部博文(1293)

文章存档

2019年(1)

2018年(1)

2016年(118)

2015年(257)

2014年(128)

2013年(222)

2012年(229)

2011年(337)

分类: 嵌入式

2012-10-22 19:54:51

1、参考解决方案

怎么读的呢?
如果是从文本中读的,考虑一下编码问题

  1. FileStream fs = new FileStream(@"c:\你的文本.txt", FileMode.Open,FileAccess.Read );
  2. StreamReader sr = new StreamReader(fs, Encoding.Default);<——注意第二个参数
  3. 你的RichTextBox.Text = sr.ReadToEnd();

 
2、实战中的两种用法

  1. //Encoding.UTF8.GetString(FileContentByte, 0, RealLength);,UTF8会出现乱码
  2. string ContentStr = Encoding.Default.GetString(FileContentByte, 0, RealLength);

               

实践证明,用UTF8方法,Windows导入WORD,TXT会出现中文筹码,故要采用Default方法。

 

image

图 乱码显示

 

image

图 中文正常显示

阅读(7816) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~