web-dev-qa-db-ja.com

MVC 4を使用して大きなファイルをアップロードする方法は?

動作していました。しかし、アップロードするファイルが大きくなると(4000k前後)コントローラーが呼び出されないことに気付きました。

だから私はその問題を修正したチャンキングを追加しました..しかし今、ファイルをゴミ文字でいっぱいに開くと...

Plupload/MVC 4で大きなファイルをアップロードする正しい方法は何ですか?

ここに私の現在のコードがあります

  $(document).ready(function () {

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

そしてコントローラー

  [HttpPost]
    public ActionResult Upload(int? chunk, string name, string taskId)
    {
        string filePath = "";
        var fileUpload = Request.Files[0];
        var uploadPath = Server.MapPath("~/App_Data/Uploads");
        chunk = chunk ?? 0;
        string uploadedFilePath = Path.Combine(uploadPath, name);
        var fileName = Path.GetFileName(uploadedFilePath);

 try
        {
            using (var fs = new FileStream(filePath, chunk == 0 ? FileMode.Create : FileMode.Append))
            {
                var buffer = new byte[fileUpload.InputStream.Length];
                fileUpload.InputStream.Read(buffer, 0, buffer.Length);
                fs.Write(buffer, 0, buffer.Length);
            }

            //Log to DB for future processing
            InstanceExpert.AddProcessStart(filePath, Int32.Parse(taskId));
        }
43
punkouter

Web.configでは、これらが必要です(2GB前後):

<system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" maxRequestLength="2147483647" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="2147483647" />
      </requestFiltering>
    </security>
    ...
</system.web>
64
ShaneKm

現在のバージョン

IIS 8.0、これは私がこの回答を書いたときに使用したバージョンです)の詳細なエラーの説明によると、 configuration/system.webServer /を確認する必要がありますsecurity/requestFiltering/requestLimits @ maxAllowedContentLength ApplicationHost.config または Web.config ファイルの設定。含める:

<requestLimits maxAllowedContentLength="20971520000"></requestLimits>

configuration/system.webServer/security/requestFilteringタグツリー内。行き先を視覚化する想像力に欠ける場合に備えて、完全なコードブロックは次のようになります。

<configuration>
    <system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="20971520000"></requestLimits>
            </requestFiltering>
        </security>
    </system.webServer>
</configuration>

Visual Studio 2010/.Net Framework 4およびそれ以前

VS2008/10や.Net Framework 3.5/4で作成されたレガシーWebアプリケーションが、 configuration/system.web/httpRuntime @ maxRequestLengthを介してこの構成を探している可能性もあります。 、しかしリンクされたページから明らかなように、このシナリオには適用されない HttpRuntime Class は、.Net Framework 1.1以降に存在しますが、もはや使用できません。この場合、以下を含める必要があります。

<httpRuntime maxRequestLength="20971520000" />

configuration/system.web/httpRuntimeタグツリー内。繰り返しになりますが、念のため、挿入先を把握することができない場合、完全なコードブロックは次のようになります。

<configuration>
    <system.web>
        <httpRuntime maxRequestLength="20971520000" />
    </system.web>
</configuration>

デモとして表示するファイルサイズの数値は、20 GBではなく20,000 MBで、21,474,836,480のようになります)大きなファイルをアップロードする必要がある厳しいセキュリティグループ用にWebサイトをコーディングしている場合を除き、この大きなファイルサイズをWebサーバーにアップロードすることを許可しないでください。

15
Prince Deekay

ソリューションは、 ここでのジョナサンのコード に基づいています。 1Gバイトのビデオファイルなどの大きなファイルをアップロードする場合は、ファイルをチャックして、複数のリクエストで送信する必要があります(1つのリクエストでタイムアウトが発生します)。最初に、他の回答で説明したように、クライアント側とサーバー側の最大制限をWeb.configに設定します。

<system.webServer>
 <security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="2147483647" />
  </requestFiltering>
 </security>
<system.webServer>

そして

<system.web>
  <httpRuntime targetFramework="4.5" maxRequestLength="2147483647" />
</system.web>

次に、ファイルをチャンクし、各チャックを送信し、応答を待って次のチャンクを送信します。 html(VideoDivはアップロードパネルとして機能します)、javascript(jQuery)、およびコントローラーコードです。

    <div id="VideoDiv">
        <label>Filename:</label>
        <input type="file" id="fileInput" /><br/><br/>
        <input type="button" id="btnUpload" value="Upload a presentation"/><br/><br/>
        <div id="progressbar_container" style="width: 100%; height: 30px; position: relative; background-color: grey; display: none">
            <div id="progressbar" style="width: 0%; height: 100%; position: absolute; background-color: green"></div>
            <span id="progressbar_label" style="position: absolute; left: 35%; top: 20%">Uploading...</span>
        </div>
    </div>

チャック、コントローラーの呼び出し、プログレスバーの更新を行うJavaScriptコード:

        var progressBarStart = function() {
            $("#progressbar_container").show();
        }

        var progressBarUpdate = function (percentage) {
            $('#progressbar_label').html(percentage + "%");
            $("#progressbar").width(percentage + "%");
        }

        var progressBarComplete = function() {
            $("#progressbar_container").fadeOut(500);
        }

        var file;

        $('#fileInput').change(function(e) {
            file = e.target.files[0];
        });

        var uploadCompleted = function() {
            var formData = new FormData();
            formData.append('fileName', file.name);
            formData.append('completed', true);

            var xhr2 = new XMLHttpRequest();
            xhr2.onload = function() {
                progressBarUpdate(100);
                progressBarComplete();
            }
            xhr2.open("POST", "/Upload/UploadComplete?fileName=" + file.name + "&complete=" + 1, true);
            xhr2.send(formData);
        }

        var multiUpload = function(count, counter, blob, completed, start, end, bytesPerChunk) {
            counter = counter + 1;
            if (counter <= count) {
                var chunk = blob.slice(start, end);
                var xhr = new XMLHttpRequest();
                xhr.onload = function() {
                    start = end;
                    end = start + bytesPerChunk;
                    if (count == counter) {
                        uploadCompleted();
                    } else {
                        var percentage = (counter / count) * 100;
                        progressBarUpdate(percentage);
                        multiUpload(count, counter, blob, completed, start, end, bytesPerChunk);
                    }
                }
                xhr.open("POST", "/Upload/MultiUpload?id=" + counter.toString() + "&fileName=" + file.name, true);
                xhr.send(chunk);
            }
        }

        $("#VideoDiv").on("click", "#btnUpload", function() {
            var blob = file;
            var bytesPerChunk = 3757000;
            var size = blob.size;

            var start = 0;
            var end = bytesPerChunk;
            var completed = 0;
            var count = size % bytesPerChunk == 0 ? size / bytesPerChunk : Math.floor(size / bytesPerChunk) + 1;
            var counter = 0;
            progressBarStart();
            multiUpload(count, counter, blob, completed, start, end, bytesPerChunk);
        });

そして、ここにchucnkを( "App_Data/Videos/Temp")に保存し、後でそれらをマージして( "App_Data/Videos")に保存するアップロードコントローラーがあります。

public class UploadController : Controller
{
    private string videoAddress = "~/App_Data/Videos";

    [HttpPost]
    public string MultiUpload(string id, string fileName)
    {
        var chunkNumber = id;
        var chunks = Request.InputStream;
        string path = Server.MapPath(videoAddress+"/Temp");
        string newpath = Path.Combine(path, fileName+chunkNumber);
        using (FileStream fs = System.IO.File.Create(newpath))
        {
            byte[] bytes = new byte[3757000];
            int bytesRead;
            while ((bytesRead=Request.InputStream.Read(bytes,0,bytes.Length))>0)
            {
                fs.Write(bytes,0,bytesRead);
            }
        }
        return "done";
    }

    [HttpPost]
    public string UploadComplete(string fileName, string complete)
    {
        string tempPath = Server.MapPath(videoAddress + "/Temp");
        string videoPath = Server.MapPath(videoAddress);
        string newPath = Path.Combine(tempPath, fileName);
        if (complete=="1")
        {
            string[] filePaths = Directory.GetFiles(tempPath).Where(p=>p.Contains(fileName)).OrderBy(p => Int32.Parse(p.Replace(fileName, "$").Split('$')[1])).ToArray();
            foreach (string filePath in filePaths)
            {
                MergeFiles(newPath, filePath);
            }
        }
        System.IO.File.Move(Path.Combine(tempPath, fileName),Path.Combine(videoPath,fileName));
        return "success";
    }

    private static void MergeFiles(string file1, string file2)
    {
        FileStream fs1 = null;
        FileStream fs2 = null;
        try
        {
            fs1 = System.IO.File.Open(file1, FileMode.Append);
            fs2 = System.IO.File.Open(file2, FileMode.Open);
            byte[] fs2Content = new byte[fs2.Length];
            fs2.Read(fs2Content, 0, (int) fs2.Length);
            fs1.Write(fs2Content, 0, (int) fs2.Length);
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message + " : " + ex.StackTrace);
        }
        finally
        {
            if (fs1 != null) fs1.Close();
            if (fs2 != null) fs2.Close();
            System.IO.File.Delete(file2);
        }
    }
}

ただし、2人のユーザーが同じ名前のファイルを同時にアップロードする場合、何らかの問題が発生するため、この問題に対処する必要があります。 responseTextを読み取ることにより、エラーと例外をキャッチしてトリムできます。

11
Aryan Firouzian