c#

c# binaryreader如何处理不同编码

小樊
81
2024-11-24 17:19:57
栏目: 编程语言

在C#中,使用BinaryReader读取文件时,默认情况下,它会使用文件的编码。但是,如果你需要处理不同编码的文件,可以使用StreamReader类来读取文件内容,然后将其转换为所需的编码。以下是一个示例,展示了如何使用StreamReaderBinaryReader处理不同编码的文件:

using System;
using System.IO;
using System.Text;

class Program
{
    static void Main()
    {
        string inputFilePath = "input.txt"; // 输入文件路径
        string outputFilePath = "output.txt"; // 输出文件路径
        Encoding inputEncoding = Encoding.GetEncoding("GB2312"); // 输入文件编码
        Encoding outputEncoding = Encoding.GetEncoding("UTF-8"); // 输出文件编码

        using (StreamReader reader = new StreamReader(inputFilePath, inputEncoding))
        {
            using (BinaryReader binaryReader = new BinaryReader(reader.BaseStream))
            {
                byte[] buffer = new byte[1024];
                int bytesRead;

                while ((bytesRead = binaryReader.Read(buffer, 0, buffer.Length)) > 0)
                {
                    using (MemoryStream memoryStream = new MemoryStream(buffer, 0, bytesRead))
                    {
                        using (StreamReader memoryReader = new StreamReader(memoryStream, outputEncoding))
                        {
                            string content = memoryReader.ReadToEnd();
                            File.WriteAllText(outputFilePath, content, outputEncoding);
                        }
                    }
                }
            }
        }
    }
}

在这个示例中,我们首先使用StreamReader以输入文件的编码(GB2312)读取文件内容。然后,我们将读取到的字节数组放入MemoryStream中,并使用StreamReader以输出文件的编码(UTF-8)将其转换回字符串。最后,我们将转换后的字符串写入输出文件。

0
看了该问题的人还看了