An elegant way to consume (all bytes of a) BinaryReader?(使用(a)BinaryReader 的所有字节的优雅方式?)
问题描述
是否有一种优雅的方法可以用 BinaryReader
模拟 StreamReader.ReadToEnd
方法?也许将所有字节放入一个字节数组?
Is there an elegant to emulate the StreamReader.ReadToEnd
method with BinaryReader
? Perhaps to put all the bytes into a byte array?
我这样做:
read1.ReadBytes((int)read1.BaseStream.Length);
...但一定有更好的方法.
...but there must be a better way.
推荐答案
原始答案(阅读下面的更新!)
只需:
byte[] allData = read1.ReadBytes(int.MaxValue);
文档 说它将读取所有字节,直到到达流末尾.
The documentation says that it will read all bytes until the end of the stream is reached.
虽然这看起来很优雅,并且文档似乎表明这会起作用,但实际的实现(在 .NET 2、3.5 和 4 中检查)为数据,这可能会在 32 位系统上导致 OutOfMemoryException
.
Although this seems elegant, and the documentation seems to indicate that this would work, the actual implementation (checked in .NET 2, 3.5, and 4) allocates a full-size byte array for the data, which will probably cause an OutOfMemoryException
on a 32-bit system.
因此,我会说实际上没有一种优雅的方式.
相反,我会推荐@iano 答案的以下变体.此变体不依赖于 .NET 4:
为BinaryReader
(或Stream
,两者的代码相同)创建一个扩展方法.
Instead, I would recommend the following variation of @iano's answer. This variant doesn't rely on .NET 4:
Create an extension method for BinaryReader
(or Stream
, the code is the same for either).
public static byte[] ReadAllBytes(this BinaryReader reader)
{
const int bufferSize = 4096;
using (var ms = new MemoryStream())
{
byte[] buffer = new byte[bufferSize];
int count;
while ((count = reader.Read(buffer, 0, buffer.Length)) != 0)
ms.Write(buffer, 0, count);
return ms.ToArray();
}
}
这篇关于使用(a)BinaryReader 的所有字节的优雅方式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用(a)BinaryReader 的所有字节的优雅方式?
基础教程推荐
- 覆盖 Json.Net 中的默认原始类型处理 2022-01-01
- 创建属性设置器委托 2022-01-01
- 当键值未知时反序列化 JSON 2022-01-01
- 我什么时候应该使用 GC.SuppressFinalize()? 2022-01-01
- Page.OnAppearing 中的 Xamarin.Forms Page.DisplayAlert 2022-01-01
- C# - 将浮点数转换为整数...并根据余数更改整数 2022-01-01
- 从 VB6 迁移到 .NET/.NET Core 的最佳策略或工具 2022-01-01
- 如何使用OpenXML SDK将Excel转换为CSV? 2022-01-01
- 使用 SED 在 XML 标签之间提取值 2022-01-01
- C# - 如何列出发布到 ASPX 页面的变量名称和值 2022-01-01