用c#读取文件内容中文是乱码的解决方法:

Posted sky410

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用c#读取文件内容中文是乱码的解决方法:相关的知识,希望对你有一定的参考价值。

    用c#读取文件内容中文是乱码的解决方法:

            //方法1: 
            

[csharp] view plain copy
 
  1. StreamReader din = new StreamReader(@"C:\1.txt", System.Text.Encoding.GetEncoding("gb2312"));  
  2. string html = "";  
  3. while (din.Peek() > -1)  
  4. {  
  5.     html = html + din.ReadToEnd();  
  6. }  
  7. din.Close();  

 

 

            //方法2:
            

[csharp] view plain copy
 
  1. StreamReader sr1 = new StreamReader((System.IO.Stream)File.OpenRead(filename), System.Text.Encoding.Default);  
  2. html = "";  
  3. while (sr1.Peek() > -1)  
  4. {  
  5.     html = html + sr1.ReadLine();  
  6. }  
  7. sr1.Close();  

 

 

            //方法3:
           

[csharp] view plain copy
 
    1. StreamReader objReader = new StreamReader(@"C:\1.txt", System.Text.Encoding.GetEncoding("gb2312"));  
    2. string sLine = "", html = "";  
    3. while (sLine != null)  
    4. {  
    5.     sLine = objReader.ReadLine();  
    6.     if (sLine != null)  
    7.         html += sLine;  
    8. }  
    9. objReader.Close();  

以上是关于用c#读取文件内容中文是乱码的解决方法:的主要内容,如果未能解决你的问题,请参考以下文章

c#读取到的TXT文件中的中文乱码怎么解决

为啥C语言输出文件内容乱码

.Net Core 读取文件时中文乱码问题的解决方法

springboot-项目获取resources下文件的方法解决乱码

读写文件时遇到编码问题解决方法

一种可以解决python读取文件中文出乱码的方法