下载时,下载功能不显示文件的总大小

时间:2012-02-28 10:33:06

标签: c# asp.net

protected void downloadFunction(string filename)
{
    string filepath = @"D:\XtraFiles\" + filename;
    string contentType = "application/x-newton-compatible-pkg";

    Stream iStream = null;
    // 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));

        // 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();
    }
}

我的下载功能非常完美,但是当用户下载浏览器时,无法查看下载的总文件大小。

所以现在浏览器说eq。下载8mb的?,下载8mb的142mb。

我错过了什么?

2 个答案:

答案 0 :(得分:1)

Content-Length header似乎是你所缺少的。

如果你设置了这个,那么浏览器会知道会有多少期待。否则它将一直持续到你停止发送数据为止,它不知道它会持续多长时间。

Response.AddHeader("Content-Length", iStream.Length);

您可能也对Response.WriteFile感兴趣,可以提供一种更简单的方法将文件发送给客户端,而无需自己担心流。

答案 1 :(得分:0)

您需要发送ContentLength - 标题:

HttpContext.Current.Response.AddHeader(HttpRequestHeader.ContentLength, iStream.Length);