簡體   English   中英

下載功能失敗,文件大小為1.35gb

[英]Download function failing with file size 1.35gb

我有這個下載功能,它工作得很好。 但是文件大小為1.35gb的文件下載將停止在300 Mb,382,400mb或1.27 Gb。 我究竟做錯了什么? (下載功能是這樣做的,因為文件需要隱藏,並且可能不會在網站上發布。)

public static void downloadFunction(string filename)
{
    string filepath = @"D:\texts\New folder\DLfolder\" + filename;
    string contentType = "application/x-newton-compatible-pkg";

    Stream iStream = null;
    // Buffer to read 10K bytes in chunk
    //byte[] buffer = new Byte[10000];
    // Buffer to read 1024K bytes in chunk

    byte[] buffer = new Byte[1048576];

    // Length of the file:
    int length;

    // Total bytes to read:
    long dataToRead;

    try
    {
        // Open the file.
        iStream = new FileStream(filepath, FileMode.Open, FileAccess.Read, FileShare.Read);

        // Total bytes to read:
        dataToRead = iStream.Length;
        HttpContext.Current.Response.ContentType = contentType;
        HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(filename, System.Text.Encoding.UTF8));
        HttpContext.Current.Response.AddHeader("Content-Length", iStream.Length.ToString());

        // Read the bytes.
        while (dataToRead > 0)
        {
            // Verify that the client is connected.
            if (HttpContext.Current.Response.IsClientConnected)
            {
                // Read the data in buffer.
                length = iStream.Read(buffer, 0, 10000);

                // Write the data to the current output stream.
                HttpContext.Current.Response.OutputStream.Write(buffer, 0, length);

                // Flush the data to the HTML output.
                HttpContext.Current.Response.Flush();

                buffer = new Byte[10000];
                dataToRead = dataToRead - length;
            }
            else
            {
                // Prevent infinite loop if user disconnects
                dataToRead = -1;
            }
        }
    }
    catch (Exception ex)
    {
        // Trap the error, if any.
        HttpContext.Current.Response.Write("Error : " + ex.Message + "<br />");

        HttpContext.Current.Response.ContentType = "text/html";
        HttpContext.Current.Response.Write("Error : file not found");
    }
    finally
    {
        if (iStream != null)
        {
            //Close the file.
            iStream.Close();
        }
        HttpContext.Current.Response.End();
        HttpContext.Current.Response.Close();
    }
} 

您可能已達到請求超時。 請注意,如果文件在一段預定的時間后停止下載,例如60或300秒。 如果是這種情況,您可以在應用程序的web.config中配置超時。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM