开发者社区 问答 正文

如何在C#中将Stream转换为byte []?

有没有简单的方法或方法可以将C 转换Stream为byte[]C#?

展开
收起
保持可爱mmm 2020-01-15 16:41:21 496 分享 版权
1 条回答
写回答
取消 提交回答
  • 调用下一个函数,例如

    byte[] m_Bytes = StreamHelper.ReadToEnd (mystream);

    功能:

    public static byte[] ReadToEnd(System.IO.Stream stream) { long originalPosition = 0;

        if(stream.CanSeek)
        {
             originalPosition = stream.Position;
             stream.Position = 0;
        }
    
        try
        {
            byte[] readBuffer = new byte[4096];
    
            int totalBytesRead = 0;
            int bytesRead;
    
            while ((bytesRead = stream.Read(readBuffer, totalBytesRead, readBuffer.Length - totalBytesRead)) > 0)
            {
                totalBytesRead += bytesRead;
    
                if (totalBytesRead == readBuffer.Length)
                {
                    int nextByte = stream.ReadByte();
                    if (nextByte != -1)
                    {
                        byte[] temp = new byte[readBuffer.Length * 2];
                        Buffer.BlockCopy(readBuffer, 0, temp, 0, readBuffer.Length);
                        Buffer.SetByte(temp, totalBytesRead, (byte)nextByte);
                        readBuffer = temp;
                        totalBytesRead++;
                    }
                }
            }
    
            byte[] buffer = readBuffer;
            if (readBuffer.Length != totalBytesRead)
            {
                buffer = new byte[totalBytesRead];
                Buffer.BlockCopy(readBuffer, 0, buffer, 0, totalBytesRead);
            }
            return buffer;
        }
        finally
        {
            if(stream.CanSeek)
            {
                 stream.Position = originalPosition; 
            }
        }
    }
    

    问题来源于stack overflow

    2020-01-15 16:41:41
    赞同 展开评论
问答分类:
C#
问答标签:
问答地址: