首页 > 代码库 > 用c#读取文件内容中文是乱码的解决方法:
用c#读取文件内容中文是乱码的解决方法:
用c#读取文件内容中文是乱码的解决方法:
//方法1:
[csharp] view plain copy
- StreamReader din = new StreamReader(@"C:\1.txt", System.Text.Encoding.GetEncoding("gb2312"));
- string html = "";
- while (din.Peek() > -1)
- {
- html = html + din.ReadToEnd();
- }
- din.Close();
//方法2:
[csharp] view plain copy
- StreamReader sr1 = new StreamReader((System.IO.Stream)File.OpenRead(filename), System.Text.Encoding.Default);
- html = "";
- while (sr1.Peek() > -1)
- {
- html = html + sr1.ReadLine();
- }
- sr1.Close();
//方法3:
[csharp] view plain copy
- StreamReader objReader = new StreamReader(@"C:\1.txt", System.Text.Encoding.GetEncoding("gb2312"));
- string sLine = "", html = "";
- while (sLine != null)
- {
- sLine = objReader.ReadLine();
- if (sLine != null)
- html += sLine;
- }
- objReader.Close();
用c#读取文件内容中文是乱码的解决方法:
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。