如何使用 Zlib 将 char 数组压缩为压缩的 html 页面
我有一个 C 语言的 CGI 应用程序,它通过将 char* 保存为 html 页面来创建 html 页面:
void saveTextFile(const char *filename, const char *str){.......}
称为
saveTextFile("..\\index.html",outputFile);
How do I use zlib to take as input the "outputFile" char array and output a zipped带有适当标题的 html 页面?
此处会使用 gzopen 而不是我的 saveTextFile 函数吗?
任何建议表示赞赏。 谢谢。
I have a CGI application in C that creates an html page by saving a char* as a html page:
void saveTextFile(const char *filename, const char *str){.......}
called as
saveTextFile("..\\index.html",outputFile);
How do I use zlib to take as input the "outputFile" char array and output a zipped html page with appropriate headers?
Would the gzopen be used here instead of my saveTextFile function?
Any advice is appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了 -
Got it -