我正在使用HttpHandler向用户发送文件。在所有浏览器上,在查看/下载文件至少一次后,后续视图/下载中的浏览器/应用程序将挂起。这是代码:
private void TransmitFile(HttpContext context, string filePath, string downloadName, bool forceDownload)
{
if (File.Exists(filePath))
{
string fileName = System.IO.Path.GetFileName(filePath);
string extension = Path.GetExtension(filePath);
FileInfo fileInfo = new FileInfo(filePath);
// set the response info/headers
context.Response.ClearContent();
context.Response.ClearHeaders();
context.Response.AddHeader("Content-Length", fileInfo.Length.ToString());
if (forceDownload)
{
context.Response.AddHeader("Content-Disposition", "attachment; filename=" + downloadName.Replace(" ", "_") + extension);
context.Response.BufferOutput = false;
}
string type = "";
// set known types based on file extension
if (extension != null)
{
switch (extension.ToLower())
{
case ".tif":
case ".tiff":
type = "image/tiff";
break;
case ".jpg":
case ".jpeg":
type = "image/jpeg";
break;
case ".gif":
type = "image/gif";
break;
case ".doc":
case ".rtf":
type = "Application/msword";
break;
case "pdf":
type = "Application/pdf";
break;
case "png":
type = "image/png";
break;
case "bmp":
type = "image/bmp";
break;
default:
type = "application/octet-stream";
break;
}
}
context.Response.ContentType = type;
context.Response.TransmitFile(filePath);
context.Response.Flush();
}
else
{
Immersive.Diagnostics.Log.Warn("Requested file does not exist: " + filePath, this);
Immersive.Diagnostics.Log.Warn("", this);
}
}
我已经读过调用Response.Close()和Response.End()不是个好主意?已经尝试过离开和移除,但它仍然会发生。
修改
似乎TransmitFile已知问题。可以在以下位置找到更全面的解释: http://www.improve.dk/blog/2008/03/29/response-transmitfile-close-will-kill-your-application
我删除了TransmitFile并更改为WriteFile,现在它完美无缺。
context.Response.WriteFile(filePath);
context.Response.Flush();
context.Response.Close();
答案 0 :(得分:0)
你有没有使用缓冲的原因?即使您没有使用它,也可以刷新它。是的,我认为你也应该在Flush()之后做一个Response.End()。
让我知道这是否有效,也许我可以自己进行一些测试。
答案 1 :(得分:0)
如果您从中下载的服务器运行Windows Server 2003 SP1,则这可能是一个已知问题。
这是一个修补程序:http://support.microsoft.com/kb/902780
另外,检查您是否在页面上启用了OutputCache
,如果是,请在没有它的情况下再次尝试下载。