0

我在 C 中有一个 CGI 应用程序,它通过将 char* 保存为 html 页面来创建 html 页面:

void saveTextFile(const char *filename, const char *str){.......}  

称为

saveTextFile("..\\index.html",outputFile);

如何使用 zlib 将“outputFile”字符数组作为输入并输出带有适当标题的压缩 html 页面?

是否会在这里使用gzopen而不是我的 saveTextFile 函数?

任何建议表示赞赏。谢谢。

4

1 回答 1

1

知道了 -

//****************************************************************************************
    //ZIP file: Take the char string "outputFile" as input to gzip. Create a zipped html file
    file = gzopen("..\\index.html.gz", "wb"); //create a zipped file
    if (file == NULL) {
        printf("Can't open zipped file");
        exit(1);
    }
    len   = strlen(outputFile); //need to know length of string
    compd = gzwrite(file, outputFile, (unsigned)len); //compress data into .gz file
    cls   = gzclose (file); //close .gz file
    //End zip*********************************************************************************** 
于 2009-05-14T16:06:35.067 回答