C# 字节数组保存为文件
时间: 2024-10-28 16:11:14 浏览: 8
C# byte数组与Image相互转换的方法
在C#中,你可以使用字节数组(byte array)来存储数据,并将其保存到文件中。以下是简单的步骤:
1. 创建字节数组:
```csharp
byte[] byteArray = new byte[长度]; // 将你的数据填充进这个数组
```
2. 准备要写入的数据(例如从字符串转换为字节):
```csharp
string data = "your_data_string";
using (var ASCIIEncoding encoding = new ASCIIEncoding())
{
byteArray = encoding.GetBytes(data);
}
```
3. 写入文件:
```csharp
using (FileStream fileStream = File.OpenWrite("outputfile.bin")) // 或指定其他路径
{
fileStream.Write(byteArray, 0, byteArray.Length);
}
```
4. 确保关闭流以释放资源:
```csharp
fileStream.Close();
```
阅读全文