在不知道初始文件大小的情况下在 C++ 中创建压缩文件

Creating compressed file in C++ without knowing the initial file size

我一直在使用 Java 的标准库来编写 Zip Archive 文件,在这种情况下,我不必知道哪些文件是将预先存储到一个 zip 文件中:我将简单地创建一个新的 ZipEntry,然后写入 ZipFile 流。

另一方面,LibArchive 和 ZLib for C++ 必须事先设置要归档的文件信息:在我的例子中,我要压缩的数据来自外部流,因此我无法查询流本身的大小。是否有 library/way 来使用那些不需要初始文件信息的库?

EDIT 此外,以下带有 LibArchive 的 C++ 代码会生成一个有效的 ZIP 文件,其中包含一个没有数据的文件。

    a = archive_write_new();
    archive_write_add_filter_gzip(a);
    archive_write_set_format_pax_restricted(a); 
    archive_write_open_filename(a, path.c_str());
    entry = archive_entry_new(); // Note 2
    archive_entry_set_pathname(entry, entryName.c_str());
    archive_entry_set_perm(entry, 0666);
    archive_write_header(a, entry);
    size_t s = archive_write_data(a, buff, len);
    archive_entry_free(entry);
    archive_write_close(a);
    archive_write_free(a);

查看官方样本Zlib site。在从源文件压缩到新文件的示例字节中,直到源上的 EOF。未使用源文件的文件大小。

在示例中唯一需要更改以使用自定义流的是这一行:

strm.avail_in = fread(in, 1, CHUNK, source);

使用您的函数从流中获取字节以填充 in 缓冲区。

使用 Zlib 处理 ZIP 存档 contrib/minizip. Here 是关于如何使用它的讨论。