我正在尝试使用一些字节数组数据动态创建一个zip流,并通过我的MVC动作下载。
但是,在Windows中打开时,下载的文件总是会出现以下损坏的错误。
当我尝试从7z提取时出现此错误
但请注意,从7z中提取的文件未损坏。
我正在使用ZipArchive
,以下是我的代码。
private byte[] GetZippedPods(IEnumerable<POD> pods, long consignmentID)
{
using (var zipStream = new MemoryStream())
{
//Create an archive and store the stream in memory.
using (var zipArchive = new ZipArchive(zipStream, ZipArchiveMode.Create, true))
{
int index = 1;
foreach (var pod in pods)
{
var zipEntry = zipArchive.CreateEntry($"POD{consignmentID}{index++}.png", CompressionLevel.NoCompression);
using (var originalFileStream = new MemoryStream(pod.ByteData))
{
using (var zipEntryStream = zipEntry.Open())
{
originalFileStream.CopyTo(zipEntryStream);
}
}
}
return zipStream.ToArray();
}
}
}
public ActionResult DownloadPOD(long consignmentID)
{
var pods = _consignmentService.GetPODs(consignmentID);
var fileBytes = GetZippedPods(pods, consignmentID);
return File(fileBytes, MediaTypeNames.Application.Octet, $"PODS{consignmentID}.zip");
}
我在这里做错了什么。
任何帮助都会受到高度赞赏,因为我一整天都在苦苦挣扎。
提前致谢
答案 0 :(得分:19)
使用。{/ p>将zipStream.ToArray()
移到zipArchive
之外
您遇到问题的原因是流被缓冲了。有几种方法可以处理它:
AutoFlush
属性设置为true
。.Flush()
。或者,由于它是MemoryStream
并且您正在使用.ToArray()
,因此您可以先让流关闭/处置(我们已经完成了将其移到using
)之外。
答案 1 :(得分:0)
我对此也有问题,我发现我的问题不是档案本身的产生,而是我如何在AngularJS中处理GET请求。
这篇文章对我有帮助:how to download a zip file using angular
关键是将responseType: 'arraybuffer'
添加到我的$ http呼叫中。
factory.serverConfigExportZIP = function () {
return $http({
url: dataServiceBase + 'serverConfigExport',
method: "GET",
responseType: 'arraybuffer'
})
};
答案 2 :(得分:0)
我处理ZipArchive并解决了错误
public static byte[] GetZipFile(Dictionary<string, List<FileInformation>> allFileInformations)
{
MemoryStream compressedFileStream = new MemoryStream();
//Create an archive and store the stream in memory.
using (var zipArchive = new ZipArchive(compressedFileStream, ZipArchiveMode.Create, true))
{
foreach (var fInformation in allFileInformations)
{
var files = allFileInformations.Where(x => x.Key == fInformation.Key).SelectMany(x => x.Value).ToList();
for (var i = 0; i < files.Count; i++)
{
ZipArchiveEntry zipEntry = zipArchive.CreateEntry(fInformation.Key + "/" + files[i].FileName);
var caseAttachmentModel = Encoding.UTF8.GetBytes(files[i].Content);
//Get the stream of the attachment
using (var originalFileStream = new MemoryStream(caseAttachmentModel))
using (var zipEntryStream = zipEntry.Open())
{
//Copy the attachment stream to the zip entry stream
originalFileStream.CopyTo(zipEntryStream);
}
}
}
//i added this line
zipArchive.Dispose();
return compressedFileStream.ToArray();
}
}
public void SaveZipFile(){
var zipFileArray = Global.GetZipFile(allFileInformations);
var zipFile = new MemoryStream(zipFileArray);
FileStream fs = new FileStream(path + "\\111.zip",
FileMode.Create,FileAccess.Write);
zipFile.CopyTo(fs);
zipFile.Flush();
fs.Close();
zipFile.Close();
}
答案 3 :(得分:0)
您可以删除“ using”并使用Dispose和Close方法 这对我有用
...
zip.Dispose();
zipStream.Close();
return zipStream.ToArray();
答案 4 :(得分:0)
我知道这是一个C#问题,但是对于托管C ++,请在完成ZipArchive ^修复错误后将其删除。
ZipArchive^ zar = ZipFile::Open(starget, ZipArchiveMode::Create);
ZipFileExtensions::CreateEntryFromFile(zar, sfile1, "file.txt");
ZipFileExtensions::CreateEntryFromFile(zar, sfile2, "file2.txt");
delete zar;