C# 中 UploadedFile 上带有 BinaryReader 的空数组

发布于 2024-10-15 07:55:13 字数 440 浏览 6 评论 0原文

假设以下代码:

Stream file = files[0].InputStream;

var FileLen = files[0].ContentLength;

var b = new BinaryReader(file);
var bytes = b.ReadBytes(FileLen);

如果我上传一个包含 10 条记录(257 字节)的 CSV 文件,BinaryReader 会用“0”填充字节数组。

我还编写了一个循环来逐步执行 BinaryReader 的 ReadByte 方法,在循环的第一次迭代中,我收到以下异常:

无法读取超出流末尾

当我增加 CSV 时文件到20000条记录,一切正常。

那么问题是,为什么在较小的文件上会发生这种情况,是否有一种解决方法可以允许二进制读取较小的文件。

Assume the following code:

Stream file = files[0].InputStream;

var FileLen = files[0].ContentLength;

var b = new BinaryReader(file);
var bytes = b.ReadBytes(FileLen);

If I upload a CSV file that is 10 records ( 257 bytes ), the BinaryReader fills the array of bytes with "0".

I also wrote a loop to step through the ReadByte Method of the BinaryReader and in the first iteration of the loop, I received the following exception:

Unable to read beyond the end of the stream

When I increase the CSV file to 200 hundred records, everything worked just fine.

The question is then, Why does this happen on smaller files, and is there a workaround that allows the Binary read of smaller files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

再见回来 2024-10-22 07:55:13

不知道为什么,但是当您在上传的流上使用 BinaryReader 时,需要显式设置起始位置。

b.BaseStream.Position = 0;

Not sure why, but when you are using BinaryReader on an uploaded stream, the start position needs to be explicitly set.

b.BaseStream.Position = 0;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文