10

我想HttpResponse.OutputStream一起使用,ContentResult这样我就可以Flush不时避免.Net使用过多的RAM。

但是所有使用 MVC 的示例都FileStreamResult, EmptyResult, FileResult, ActionResult, ContentResult显示了将所有数据放入内存并传递给其中之一的代码。还有一篇文章建议EmptyResult与使用一起返回HttpResponse.OutputStream是个坏主意。我还能如何在 MVC 中做到这一点?

从 MVC 服务器组织大数据(html 或二进制)的可刷新输出的正确方法是什么?

为什么返回EmptyResultor ContentResultorFileStreamResult是个坏主意?

4

1 回答 1

6

如果您已经有一个流可以使用,您会想要使用 FileStreamResult。很多时候,您可能只能访问该文件,需要构建一个流,然后将其输出到客户端。

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

是解释上述代码的微软文章。

于 2012-10-15T15:10:20.047 回答