1

我正在尝试使用带有 VC++2010 的 zlib-1.2.7 对文本文件进行放气和膨胀。我用作pipe.c基础并重写了main()以设置输入/输出文件。

我可以对任何文本文件进行放气,但如果没有Z_DATA_ERROR(-3),我就无法为大文件充气。

inf()没有def()从 改变pipe.c

这是我的main()

int main (){
    FILE *a, *b, *c;
    int ret;

    //ZIP
    a = fopen("a_data.txt", "r");
    b = fopen("b_compressedData.zip", "w");
    if(a != NULL && b != NULL){
        ret = def(a, b, Z_DEFAULT_COMPRESSION);
        printf("%d\n", ret); 

        if (ret != Z_OK) zerr(ret);

        fclose(a);
        fclose(b);
    }
    //UNZIP
    b = fopen("b_compressedData.zip", "r");
    c = fopen("c_uncompressedData.txt", "w");
    if(c != NULL && b != NULL){
        ret = inf(b, c);
        printf("%d\n", ret); 
        if (ret != Z_OK) zerr(ret);

        fclose(b);
        fclose(c);
    }

    return 0;
}

这是inf()功能:

int inf(FILE *source, FILE *dest)
{
    int ret;
    unsigned have;
    z_stream strm;
    unsigned char in[CHUNK];
    unsigned char out[CHUNK];

    /* allocate inflate state */
    strm.zalloc = Z_NULL;
    strm.zfree = Z_NULL;
    strm.opaque = Z_NULL;
    strm.avail_in = 0;
    strm.next_in = Z_NULL;
    ret = inflateInit(&strm);
    if (ret != Z_OK)
        return ret;

    /* decompress until deflate stream ends or end of file */
    do {
        strm.avail_in = fread(in, 1, CHUNK, source);
        if (ferror(source)) {
            (void)inflateEnd(&strm);
            return Z_ERRNO;
        }
        if (strm.avail_in == 0)
            break;
        strm.next_in = in;

        /* run inflate() on input until output buffer not full */
        do {
            strm.avail_out = CHUNK;
            strm.next_out = out;
            ret = inflate(&strm, Z_NO_FLUSH);
            assert(ret != Z_STREAM_ERROR);  /* state not clobbered */
            switch (ret) {
            case Z_NEED_DICT:
                ret = Z_DATA_ERROR;     /* and fall through */
            case Z_DATA_ERROR:
            case Z_MEM_ERROR:
                (void)inflateEnd(&strm);
                return ret;
            }
            have = CHUNK - strm.avail_out;
            if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
                (void)inflateEnd(&strm);
                return Z_ERRNO;
            }
        } while (strm.avail_out == 0);

        /* done when inflate() says it's done */
    } while (ret != Z_STREAM_END);

    /* clean up and return */
    (void)inflateEnd(&strm);
    return ret == Z_STREAM_END ? Z_OK : Z_DATA_ERROR;
}
4

1 回答 1

2

您需要"b"在 for 的模式中添加 a fopen(),其中 theb是二进制的。例如"rb""wb"。否则,在 Windows 上,您会得到会弄乱二进制数据的行尾转换。

顺便说一句,你不应该调用压缩文件.zip,因为它不是。 zlib写入 zlib 格式的数据,或者如果请求 gzip 格式的数据。zlib 不会自行编写 zip 格式的数据。有用于编写 zip 文件的第三方代码,例如在 zlib 源代码分发的 contrib 目录中,或者在libzip中。

.zz用作 zlib 格式数据的后缀。 .gz是 gzip 格式数据的后缀。

于 2012-10-08T15:20:26.860 回答