gpt4 book ai didi

c# - 使用 SharpZipLib 压缩大文件导致内存不足异常

转载 作者:太空宇宙 更新时间:2023-11-03 18:28:26 33 4
gpt4 key购买 nike

我有一个 453MB 的 XML 文件,我正在尝试使用 SharpZipLib 将其压缩为 ZIP 文件.

下面是我用来创建 zip 的代码,但它导致了 OutOfMemoryException。此代码成功压缩了一个 428MB 的文件。

知道为什么会发生异常,因为我不明白为什么,因为我的系统有足够的可用内存。

public void CompressFiles(List<string> pathnames, string zipPathname)
{
try
{
using (FileStream stream = new FileStream(zipPathname, FileMode.Create, FileAccess.Write, FileShare.None))
{
using (ZipOutputStream stream2 = new ZipOutputStream(stream))
{
foreach (string str in pathnames)
{
FileStream stream3 = new FileStream(str, FileMode.Open, FileAccess.Read, FileShare.Read);
byte[] buffer = new byte[stream3.Length];
try
{
if (stream3.Read(buffer, 0, buffer.Length) != buffer.Length)
{
throw new Exception(string.Format("Error reading '{0}'.", str));
}
}
finally
{
stream3.Close();
}
ZipEntry entry = new ZipEntry(Path.GetFileName(str));
stream2.PutNextEntry(entry);
stream2.Write(buffer, 0, buffer.Length);
}
stream2.Finish();
}
}
}
catch (Exception)
{
File.Delete(zipPathname);
throw;
}
}

最佳答案

您正在尝试创建一个与文件一样大的缓冲区。相反,将缓冲区设置为固定大小,向其中读取一些字节,并将读取的字节数写入 zip 文件。

这是带有 4096 字节缓冲区(和一些清理)的代码:

public static void CompressFiles(List<string> pathnames, string zipPathname)
{
const int BufferSize = 4096;
byte[] buffer = new byte[BufferSize];

try
{
using (FileStream stream = new FileStream(zipPathname,
FileMode.Create, FileAccess.Write, FileShare.None))
using (ZipOutputStream stream2 = new ZipOutputStream(stream))
{
foreach (string str in pathnames)
{
using (FileStream stream3 = new FileStream(str,
FileMode.Open, FileAccess.Read, FileShare.Read))
{
ZipEntry entry = new ZipEntry(Path.GetFileName(str));
stream2.PutNextEntry(entry);

int read;
while ((read = stream3.Read(buffer, 0, buffer.Length)) > 0)
{
stream2.Write(buffer, 0, read);
}
}
}
stream2.Finish();
}
}
catch (Exception)
{
File.Delete(zipPathname);
throw;
}
}

特别注意这个 block :

const int BufferSize = 4096;
byte[] buffer = new byte[BufferSize];
// ...
int read;
while ((read = stream3.Read(buffer, 0, buffer.Length)) > 0)
{
stream2.Write(buffer, 0, read);
}

这会将字节读入buffer。当没有更多字节时,Read() 方法返回 0,这就是我们停止的时候。当 Read() 成功时,我们可以确定缓冲区中有 一些 数据,但我们不知道有多少字节。可能会填满整个缓冲区,或者只是其中的一小部分。因此,我们使用读取的字节数 read 来确定要写入 ZipOutputStream 的字节数。

顺便说一句,该代码块可以替换为添加到 .Net 4.0 的简单语句,其作用完全相同:

stream3.CopyTo(stream2);

因此,您的代码可能会变成:

public static void CompressFiles(List<string> pathnames, string zipPathname)
{
try
{
using (FileStream stream = new FileStream(zipPathname,
FileMode.Create, FileAccess.Write, FileShare.None))
using (ZipOutputStream stream2 = new ZipOutputStream(stream))
{
foreach (string str in pathnames)
{
using (FileStream stream3 = new FileStream(str,
FileMode.Open, FileAccess.Read, FileShare.Read))
{
ZipEntry entry = new ZipEntry(Path.GetFileName(str));
stream2.PutNextEntry(entry);

stream3.CopyTo(stream2);
}
}
stream2.Finish();
}
}
catch (Exception)
{
File.Delete(zipPathname);
throw;
}
}

现在您知道为什么会出现错误,以及如何使用缓冲区。

关于c# - 使用 SharpZipLib 压缩大文件导致内存不足异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28235804/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com