我尝试从asp.net c#网络表单应用程序下载Ionic.Zip.dll
制作的zip文件,如下所示:
zip.AddEntry("filename", arraybyte);
Response.Clear();
Response.BufferOutput = false;
Response.ContentType = "application/zip";
Response.AddHeader("content-disposition", "filename=SuppliersDocuments.zip");
zip.Save(Response.OutputStream);
Response.Close();
但我这样得Failed - network error
:
错误只发生在 chrome 中,并且在其他浏览器中正常运行。 我的本地主机上不会发生错误,它只发生在主服务器上。
如果有人可以解释这个问题的解决方案,那将非常有用。
答案 0 :(得分:0)
我遇到了同样的问题,这种情况发生在Chrome中。此问题发生在Chrome v53及更高版本上,解释为here。
为了解决这个问题,我建议您获取文件的长度,并在标题中使用Content-Length并传递文件的长度。
string fileName = string.Format("Download.zip");
Response.BufferOutput = false; // for large files
using (ZipFile zip = new ZipFile())
{
zip.AddFile(path, "Download");
Response.Clear();
Response.Buffer = true;
Response.ContentType = "application/zip";
Response.AddHeader(name: "Content-Disposition", value: "attachment;filename=" + fileName);
Int64 fileSizeInBytes = new FileInfo(path).Length;
Response.AddHeader("Content-Length", fileSizeInBytes.ToString());
zip.Save(Response.OutputStream);
Response.Flush();
}
Response.Close();