我的以下代码有问题。由于公司的原因,我必须使用windows 2003。他们使用这个系统。此代码在与 Windows XP 一起使用时不起作用。此代码生成一个 zip 文件,当我使用 Windows 资源管理器打开它时,它显示错误:“文件损坏”。我使用 DotNetZip.dll 和特别是:Ionic.Zip。zip 文件在 HTTP 响应流中发送。
有人可以帮助我吗?感谢您的回答。
我的功能:
public void Zip()
{
Response.ContentType = "application/octet-stream";
Response.AppendHeader("content-disposition", "attachment; filename=\"myFile.zip\"");
byte[] buffer = new byte[4096];
ZipOutputStream zipOutputStream = new ZipOutputStream(Response.OutputStream);
zipOutputStream.CompressionLevel = Ionic.Zlib.CompressionLevel.Level3;
string[] filestozip = Directory.GetFiles("C:\\myFolderToZip", "*.*", SearchOption.AllDirectories);
foreach (string fileName in filestozip)
{
Stream fs = File.OpenRead(fileName);
zipOutputStream.PutNextEntry(fileName.Replace(dir + "\\", ""));
int count = fs.Read(buffer, 0, buffer.Length);
while (count > 0)
{
zipOutputStream.Write(buffer, 0, count);
count = fs.Read(buffer, 0, buffer.Length);
Response.Flush();
}
fs.Close();
}
zipOutputStream.Close();
Response.Flush();
HttpContext.Current.ApplicationInstance.CompleteRequest();
}