阅读量:0
在C#中,可以使用FileStream
类来进行字节类型文件的输入输出操作。下面是一个简单的示例,展示如何使用FileStream
类来读取和写入字节类型的文件:
using System; using System.IO; class Program { static void Main() { // 读取文件 using (FileStream fs = new FileStream("input.txt", FileMode.Open)) { byte[] buffer = new byte[1024]; int bytesRead = fs.Read(buffer, 0, buffer.Length); Console.WriteLine("Read {0} bytes from file", bytesRead); Console.WriteLine("Content of file: {0}", Encoding.UTF8.GetString(buffer, 0, bytesRead)); } // 写入文件 using (FileStream fs = new FileStream("output.txt", FileMode.Create)) { string content = "Hello, World!"; byte[] buffer = Encoding.UTF8.GetBytes(content); fs.Write(buffer, 0, buffer.Length); Console.WriteLine("Write {0} bytes to file", buffer.Length); } } }
在上面的示例中,首先使用FileStream
类读取名为input.txt
的文件,并将文件内容读取到字节数组中,然后使用Encoding.UTF8.GetString
方法将字节数组转换为字符串并输出。
接着使用FileStream
类创建名为output.txt
的文件,并将字符串Hello, World!
转换为字节数组并写入文件中。
需要注意的是,在使用FileStream
类进行文件输入输出操作时,需要使用using
语句来确保文件流被正确关闭并释放资源。