我想将HttpResponse.OutputStream
与ContentResult
一起使用,以便我可以不时Flush
以避免使用.Net过多的RAM。
但是,所有带有 MVC 的示例FileStreamResult, EmptyResult, FileResult, ActionResult, ContentResult
显示将所有数据放入内存并传递给其中一个数据的代码。还有一篇文章建议将EmptyResult
与使用HttpResponse.OutputStream
一起返回是一个坏主意。我还如何在 MVC 中做到这一点?
从MVC服务器组织大数据(html或二进制)的可刷新输出的正确方法是什么?
为什么返回EmptyResult
或ContentResult
或FileStreamResult
是一个坏主意?
如果您已经有一个流可以使用,您可能希望使用 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();
}
这是解释上述代码的微软文章。