gpt4 book ai didi

c# - 将 System.IO.Stream 转换为 Byte[]

转载 作者:太空宇宙 更新时间:2023-11-03 21:01:41 25 4
gpt4 key购买 nike

<分区>

我正在寻找可以将 System.IO.Stream 转换为 byte[] 的 C# 语言解决方案。我已经尝试了下面的代码,但我收到的 byte[] 为 null。有人可以指导我从下面的代码中遗漏的内容吗?我正在接收来自 Alfresco Web 服务的信息,除非保存到临时位置,否则我无法读取该文件。

 private static byte[] ReadFile(Stream fileStream)
{
byte[] bytes = new byte[fileStream.Length];

fileStream.Read(bytes, 0, Convert.ToInt32(fileStream.Length));
fileStream.Close();

return bytes;

//using (MemoryStream ms = new MemoryStream())
//{
// int read;
// while ((read = fileStream.Read(bytes, 0, bytes.Length)) > 0)
// {
// fileStream.CopyTo(ms);
// }
// return ms.ToArray();
//}
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com