gpt4 book ai didi

c++ - 使用 minizip 解压缩一个字符数组

转载 作者:行者123 更新时间:2023-11-30 02:25:27 25 4
gpt4 key购买 nike

我有一个 vector (它只是一个字符数组的包装器)作为输入。 pkzip 是使用 c# sharpZipLib 创建的。

我将数据存储到一个文件中,该文件通过已 check out 的十六进制编辑器 zip 模板运行。输入很好,没有格式错误。除了压缩数据,这都是:

50 4B 03 04 14 00 00 00 08 00 51 B2 8B 4A B3 B6
6C B0 F6 18 00 00 40 07 01 00 07 00 00 00 2D 33
31 2F 31 32 38

<compressed data (6390 bytes)>

50 4B 01 02 14 00 14 00 00 00 08 00 51 B2 8B 4A
B3 B6 6C B0 F6 18 00 00 40 07 01 00 07 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 2D 33
31 2F 31 32 38 50 4B 05 06 00 00 00 00 01 00 01
00 35 00 00 00 1B 19 00 00 00 00

我有另一个 vector 作为输出。膨胀的数据大约有 67-68k,所以我知道它适合缓冲区。

对于我来说,我无法让 minizip 将前者膨胀并将其存储到后者中。

这是我目前所拥有的:

#include "minizip\zlib.h"

#define ZLIB_WINAPI

std::vector<unsigned char> data;

/*...*/

std::vector<unsigned char> outBuffer(1024 * 1024);

z_stream stream;

stream.zalloc = Z_NULL;
stream.zfree = Z_NULL;
stream.opaque = Z_NULL;

stream.data_type = Z_BINARY;

stream.avail_in = data.size();
stream.avail_out = outBuffer.size();

stream.next_in = &data[0];
stream.next_out = &outBuffer[0];

int ret = inflateInit(&stream);
ret = inflate(&stream, 1);
ret = inflateEnd(&stream);

我使用调试器逐步执行该方法并监视 ret . inflate返回值 -3,消息为 "incorrect header check" .

这是一个 pkzip ,它是 zlib 的包装器,但是minizip应该是围绕 zlib 的包装库应该支持pkzip ,不应该吗?我必须如何修改它才能工作?

最佳答案

因为它以 50 4B 03 04 开头,所以它是一个 PKZIP 文件,根据 https://users.cs.jmu.edu/buchhofp/forensics/formats/pkzip.html

如果这些是 zip 文件,则 inflate 函数是错误的。 zlib、gzip 和 zip 格式都是不同的。如果使用正确的函数,则可以使用 zlib 读取 zip。如果您没有 contrib,可以下载并重建 zlib。

这是我使用 zlib 库处理 zip 文件的一些旧代码。我可能移动了一些标题,因为官方 zlib 将它们放在 zlib/contrib/minizip 下。

参数是文件名,所以你必须修改它,或者将你的数组写入文件。

// #include <zlib/unzip.h>
#include <zlib/contrib/minizip/unzip.h>

/// return list of filenames in zip archive
std::list<std::string> GetZipFilenames(const char *szZipArchive){
std::list<std::string> results;
unzFile zip = unzOpen(szZipArchive);
if (zip){
unz_global_info info;
int rv = unzGetGlobalInfo(zip, &info);

if (UNZ_OK == unzGoToFirstFile(zip)){
do {
char szFilename[BUFSIZ];
if (UNZ_OK == unzGetCurrentFileInfo(zip, NULL, szFilename, sizeof(szFilename), NULL, 0, NULL, 0))
results.push_back(std::string(szFilename));
} while (UNZ_OK == unzGoToNextFile(zip));
}
}
return results;
}

/// extract the contents of szFilename inside szZipArchive
bool ExtractZipFileContents(const char *szZipArchive, const char *szFilename, std::string &contents){
bool result = false;
unzFile zip = unzOpen(szZipArchive);
if (zip){
if (UNZ_OK == unzLocateFile(zip, szFilename, 0)){
if (UNZ_OK == unzOpenCurrentFile(zip)){
char buffer[BUFSIZ];
size_t bytes;
while (0 < (bytes = unzReadCurrentFile(zip, buffer, sizeof(buffer)))){
contents += std::string(buffer, bytes);
}
unzCloseCurrentFile(zip);
result = (bytes == 0);
}
}
unzClose(zip);
}
return result;
}

关于c++ - 使用 minizip 解压缩一个字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44119684/

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