在C#中,使用BinaryReader
读取文件时,默认情况下,它会使用文件的编码。但是,如果你需要处理不同编码的文件,可以使用StreamReader
类来读取文件内容,然后将其转换为所需的编码。以下是一个示例,展示了如何使用StreamReader
和BinaryReader
处理不同编码的文件:
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)将其转换回字符串。最后,我们将转换后的字符串写入输出文件。