我有一个我要压缩的内存流:
public static MemoryStream ZipChunk(MemoryStream unZippedChunk) {
MemoryStream zippedChunk = new MemoryStream();
ZipOutputStream zipOutputStream = new ZipOutputStream(zippedChunk);
zipOutputStream.SetLevel(3);
ZipEntry entry = new ZipEntry("name");
zipOutputStream.PutNextEntry(entry);
Utils.StreamCopy(unZippedChunk, zippedChunk, new byte[4096]);
zipOutputStream.CloseEntry();
zipOutputStream.IsStreamOwner = false;
zipOutputStream.Close();
zippedChunk.Close();
return zippedChunk;
}
public static void StreamCopy(Stream source, Stream destination, byte[] buffer, bool bFlush = true) {
bool flag = true;
while (flag) {
int num = source.Read(buffer, 0, buffer.Length);
if (num > 0) {
destination.Write(buffer, 0, num);
}
else {
if (bFlush) {
destination.Flush();
}
flag = false;
}
}
}
它应该很简单。您为它提供了要压缩的流。这些方法压缩流并返回它。大。
但是,我没有得到压缩流。我得到的是在开头和结尾添加了大约20个字节的流,这似乎与zip库有关。但是中间的数据是完全未压缩的(具有相同值的256字节范围等)。我尝试将等级提高到9,但没有任何改变。
为什么我的流没有压缩?
答案 0 :(得分:1)
您自己通过以下方式将原始流复制到输出流中:
Utils.StreamCopy(unZippedChunk, zippedChunk, new byte[4096]);
您应该复制到zipOutputStream
:
StreamCopy(unZippedChunk, zipOutputStream, new byte[4096]);
附注:不使用自定义复制流方法 - 使用默认方法:
unZippedChunk.CopyTo(zipOutputStream);