从 Request.Files、StreamReader 或 BinaryReader 或 BufferedStream 读取上传文件的最佳方式是什么?
我有一个用户可以上传多个文件的表单。我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会选择
System.IO.Stream
。I'd go with
System.IO.Stream
.