传递的参数是:
`C:\Licenses\testfolder\PERSONAL-Wednesday 04 July-0405.txt`,`c2license.txt`
功能是:
/// <summary>
/// Starts serving the download
/// </summary>
public static void InitStoreDownload(string filePath, string serveFileName)
{
// Get size of file
var f = new FileInfo(filePath);
var fileSize = f.Length;
var extension = f.Extension;
var context = HttpContext.Current;
context.Response.Clear();
context.Response.Buffer = false;
// Correct mime type
if (extension.Equals(".zip", StringComparison.CurrentCultureIgnoreCase))
context.Response.ContentType = "application/octet-stream";
else if (extension.Equals(".txt", StringComparison.CurrentCultureIgnoreCase))
{
context.Response.ContentType = "text/plain";
}
context.Response.AddHeader("Content-Disposition", "attachment; filename=" + serveFileName);
context.Response.AddHeader("Content-Length", fileSize.ToString());
context.Response.TransmitFile(filePath);
context.Response.Close();
context.Response.End();
}
服务器上的C:\Licenses\testfolder\PERSONAL-Wednesday 04 July-0405.txt
文件长度为475个字节。
使用此脚本获取时下载的文件为474字节,缺少文件末尾的单个字节。 (最后一个字节是句号,存在于服务器上的文件中,但通过此功能下载时不存在)。这会导致文件无效。
我们正试图弄清楚为什么缺少字节,有人可以帮忙吗?
答案 0 :(得分:3)
尝试使用
Response.TransmitFile(filePath);
HttpContext.Current.ApplicationInstance.CompleteRequest();
而不是
Response.Close();
Response.End();
或者正如其他提到的那样:
在Flush()
Close()
Response.TransmitFile(filePath);
Response.Flush();
Response.Close();
Response.End();
或省略Close()
的调用并直接调用End()
,因为它包括刷新响应。
Response.TransmitFile(filePath);
Response.End();
有关于Response.End()的thread可能包含有用的信息。