首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

从C#NET 中的byte []保存文件

从C# .NET中的byte[]保存文件,可以使用以下方法:

  1. 使用FileStream类:
代码语言:csharp
复制
using System.IO;

byte[] fileBytes = ...; // 从其他地方获取byte[]
string filePath = "path/to/save/file.ext";

using (FileStream fs = new FileStream(filePath, FileMode.Create))
{
    fs.Write(fileBytes, 0, fileBytes.Length);
}
  1. 使用File类:
代码语言:csharp
复制
using System.IO;

byte[] fileBytes = ...; // 从其他地方获取byte[]
string filePath = "path/to/save/file.ext";

File.WriteAllBytes(filePath, fileBytes);
  1. 使用BinaryWriter类:
代码语言:csharp
复制
using System.IO;

byte[] fileBytes = ...; // 从其他地方获取byte[]
string filePath = "path/to/save/file.ext";

using (BinaryWriter bw = new BinaryWriter(File.Open(filePath, FileMode.Create)))
{
    bw.Write(fileBytes);
}

请注意,以上代码示例中的fileBytes变量需要替换为实际的byte[]数据。同时,filePath变量需要替换为实际的文件路径。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券