26

我想知道如何将流转换为字节。

我找到了这段代码,但在我的情况下它不起作用:

var memoryStream = new MemoryStream();
paramFile.CopyTo(memoryStream);
byte[] myBynary = memoryStream.ToArray();
myBinary = memoryStream.ToArray();

但在我的情况下,在 paramFile.CopyTo(memoryStream) 行中它什么也没发生,没有例外,应用程序仍然可以工作,但代码不会继续下一行。

谢谢。

4

2 回答 2

45

如果您正在读取文件,只需使用File.ReadAllBytes 方法

byte[] myBinary = File.ReadAllBytes(@"C:\MyDir\MyFile.bin");

此外,只要您的 sourceStream 支持 Length 属性,就无需 CopyTo a MemoryStream 来获取字节数组:

byte[] myBinary = new byte[paramFile.Length];
paramFile.Read(myBinary, 0, (int)paramFile.Length);
于 2012-06-29T17:25:37.670 回答
41

这是我为 Stream 类编写的扩展方法

 public static class StreamExtensions
    {
        public static byte[] ToByteArray(this Stream stream)
        {
            stream.Position = 0;
            byte[] buffer = new byte[stream.Length];
            for (int totalBytesCopied = 0; totalBytesCopied < stream.Length; )
                totalBytesCopied += stream.Read(buffer, totalBytesCopied, Convert.ToInt32(stream.Length) - totalBytesCopied);
            return buffer;
        }
    }
于 2012-06-29T17:24:44.420 回答