asp.net-mvc – 如何使用MVC 4上传大文件?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何使用MVC 4上传大文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有它的工作..但我注意到,一旦我上传文件越来越大(大约4000k)控制器不会被调用..

所以我添加在chunking哪个修复了这个问题..但现在当我打开的文件,其完整的垃圾字符…

那么什么是正确的方式上传文件与plupload / MVC 4?

这是我当前的代码

  1. $(document).ready(function () {
  2.  
  3. var uploader = new plupload.Uploader({
  4. runtimes: 'html5',browse_button: 'pickfiles',container: 'container',// max_file_size: '20000mb',url: '@Url.Action("Upload","Home")',chunk_size: '4mb',//filters: [
  5. // { title: "Excel files",extensions: "xls,xlsx" },// { title: "Text files",extensions: "txt" }
  6. //],multiple_queues: true,multipart: true,multipart_params: { taskId: '' }
  7. });

和控制器

  1. [HttpPost]
  2. public ActionResult Upload(int? chunk,string name,string taskId)
  3. {
  4. string filePath = "";
  5. var fileUpload = Request.Files[0];
  6. var uploadPath = Server.MapPath("~/App_Data/Uploads");
  7. chunk = chunk ?? 0;
  8. string uploadedFilePath = Path.Combine(uploadPath,name);
  9. var fileName = Path.GetFileName(uploadedFilePath);
  10.  
  11. try
  12. {
  13. using (var fs = new FileStream(filePath,chunk == 0 ? FileMode.Create : FileMode.Append))
  14. {
  15. var buffer = new byte[fileUpload.InputStream.Length];
  16. fileUpload.InputStream.Read(buffer,buffer.Length);
  17. fs.Write(buffer,buffer.Length);
  18. }
  19.  
  20. //Log to DB for future processing
  21. InstanceExpert.AddProcessStart(filePath,Int32.Parse(taskId));
  22. }

解决方法

在web.config你需要这些(2GB四周):
  1. <system.web>
  2. <compilation debug="true" targetFramework="4.5" />
  3. <httpRuntime targetFramework="4.5" maxRequestLength="2147483647" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
  4. <security>
  5. <requestFiltering>
  6. <requestLimits maxAllowedContentLength="2147483647" />
  7. </requestFiltering>
  8. </security>
  9. ...
  10. </system.web>

猜你在找的asp.Net相关文章