为什么我的StreamResult没有返回整个文件

本文关键字:文件 返回 我的 StreamResult 为什么 | 更新日期: 2023-09-27 17:58:43

我必须从控制器向客户端提供大文件(200-800MB)。我测试了FileStreamResult,但这个类在内存中缓冲了整个文件。这种行为对我的项目来说还不够好。

此外,我从这里测试了该方法:http://support.microsoft.com/kb/812406.关于内存,这看起来很好,但文件并没有完全下载到客户端上(原始文件为210222KB,下载的文件为209551到209776)。这意味着大约有0.5 MB丢失(这会导致文件损坏)。

有人有主意吗?无论如何,最好的方法是什么?我感谢你所做的一切。

仅针对未来的用户,链接指向以下代码:

System.IO.Stream iStream = null;
// Buffer to read 10K bytes in chunk:
byte[] buffer = new Byte[10000];
// Length of the file:
int length;
// Total bytes to read:
long dataToRead;
// Identify the file to download including its path.
string filepath  = "DownloadFileName";
// Identify the file name.
string  filename  = System.IO.Path.GetFileName(filepath);
try
{
    // Open the file.
    iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Open, 
                System.IO.FileAccess.Read,System.IO.FileShare.Read);

    // Total bytes to read:
    dataToRead = iStream.Length;
    Response.ContentType = "application/octet-stream";
    Response.AddHeader("Content-Disposition", "attachment; filename=" + filename);
    // Read the bytes.
    while (dataToRead > 0)
    {
        // Verify that the client is connected.
        if (Response.IsClientConnected) 
        {
            // Read the data in buffer.
            length = iStream.Read(buffer, 0, 10000);
            // Write the data to the current output stream.
            Response.OutputStream.Write(buffer, 0, length);
            // Flush the data to the HTML output.
            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.
    Response.Write("Error : " + ex.Message);
}
finally
{
    if (iStream != null) 
    {
        //Close the file.
        iStream.Close();
    }
    Response.Close();
}

更新

这是我的行动:

    public DownloadResult TransferTest()
    {
        string fullFilePath = @"C:'ws'Test'Test'Templates'example.pdf";
        return new DownloadResult(fullFilePath);
    }

我只是直接从浏览器调用操作(http://xxx.xxx/Other/TransferTest)。

为什么我的StreamResult没有返回整个文件

代码基本上看起来不错-您或多或少正确地处理了Read的返回值(如果我很挑剔,我会说检查一下<=0,但这不是预期的行为,因为您可能锁定了文件)。

唯一发生的事情是:尝试添加一个:

Response.OutputStream.Flush();

也许:

Response.OutputStream.Close();

以确保输出流被刷新。