从 Request.Files、StreamReader 或 BinaryReader 或 BufferedStream 读取上传文件的最佳方式是什么?

发布于 2024-08-31 06:31:37 字数 270 浏览 7 评论 0原文

我有一个用户可以上传多个文件的表单。我正在使用 MVC 2.0,在我的控制器中,我需要调用一个 Web 服务,该服务是一个常见的导入接口,需要将文件作为 byte[] 传入。

.NET 将 Request.Files 公开为 HttpFileCollectionBase,并且我使用提供对 Stream 成员的访问的 HttpPostedFile 或 HttpPostedFileBase 来访问文件句柄。

我从流中读取字节的最佳方法是什么?

二进制阅读器?流阅读器?缓冲流?

I have a form where the user can upload multiple files. I am using MVC 2.0 and in my controller I need to call a webservice that is a common import interface requires the files to passed in as byte[].

.NET exposes Request.Files as a HttpFileCollectionBase and I access the filehandle using HttpPostedFile or HttpPostedFileBase that provides access to the Stream member.

What is the best way for me to read the bytes from the stream?

BinaryReader? StreamReader? BufferedStream?

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

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

发布评论

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

评论(1

Smile简单爱 2024-09-07 06:31:37

我会选择 System.IO.Stream

I'd go with System.IO.Stream.

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