我必须从我的控制器向客户端提供大文件(200-800MB)。我测试了FileStreamResult,但是这个类将整个文件缓冲在内存中。这种行为对我的项目来说还不够好。
此外,我从这里测试方法:http://support.microsoft.com/kb/812406。关于内存,这看起来很不错 - 但是文件没有在客户端上完全下载(原始文件是210222 KB,下载的文件是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)调用操作。
答案 0 :(得分:3)
代码基本上看起来很合理 - 你或多或少正确地处理来自Read
的返回值(如果我挑剔,我会说检查{{1}但是,这可能不是预期的行为,因为你可能对文件有锁定。)
唯一出现的情况是:尝试添加:
<=0
或许:
Response.OutputStream.Flush();
确保刷新输出流。