Convert HttpPostedFileBase to byte[]

匿名 (未验证) 提交于 2019-12-03 02:08:02

问题:

In my MVC application, I am using following code to upload a file.

MODEL

 public HttpPostedFileBase File { get; set; } 

VIEW

@Html.TextBoxFor(m => m.File, new { type = "file" }) 

Everything working fine .. But I am trying to convert the result fiel to byte[] .How can i do this

CONTROLLER

 public ActionResult ManagePhotos(ManagePhotos model)     {         if (ModelState.IsValid)         {             byte[] image = model.File; //Its not working .How can convert this to byte array         }      } 

回答1:

As Darin says, you can read from the input stream - but I'd avoid relying on all the data being available in a single go. If you're using .NET 4 this is simple:

MemoryStream target = new MemoryStream(); model.File.InputStream.CopyTo(target); byte[] data = target.ToArray(); 

It's easy enough to write the equivalent of CopyTo in .NET 3.5 if you want. The important part is that you read from HttpPostedFileBase.InputStream.

For efficient purposes you could check whether the stream returned is already a MemoryStream:

byte[] data; using (Stream inputStream = model.File.InputStream) {     MemoryStream memoryStream = inputStream as MemoryStream;     if (memoryStream == null)     {         memoryStream = new MemoryStream();         inputStream.CopyTo(memoryStream);     }     data = memoryStream.ToArray(); } 


回答2:

You can read it from the input stream:

public ActionResult ManagePhotos(ManagePhotos model) {     if (ModelState.IsValid)     {         byte[] image = new byte[model.File.ContentLength];         model.File.InputStream.Read(image, 0, image.Length);           // TODO: Do something with the byte array here     }     ... } 

And if you intend to directly save the file to the disk you could use the model.File.SaveAs method. You might find the following blog post useful.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!