首页 > 教育学习 > 为什么 > 在GAE输出压缩文件并文件下载的方法(Python)

在GAE输出压缩文件并文件下载的方法(Python)
2012-01-19 20:11:46   来源:   点击:

    在GAE输出压缩文件并文件下载的方法(Python)现在我有一个文本数组,我要把每个元素单独保存为一个txt文件并压缩,在网页弹出下载。 有没有实现的可能? (Python语言)===============================已解决:如何在GAE 上动态生成zip 文件 - kjava - ITeye技术网站kjava.iteye.com/blog...

    1 个答案

    • 答案 1:

      可以的:s = StringIO.StringIO()z = zipfile.ZipFile(s, mode="w", compression=zipfile.ZIP_DEFLATED)z.writestr("readme.txt","hello world")z.close()self.response.headers["Content-Type"] = "application/x-zip"self.response.headers["Content-Disposition"] = "attachment; filename=test.zip"self.response.out.write(s.getvalue())

相关热词搜索:

上一篇:普通公民可以起诉铁道部吗?
下一篇:一场家具展,如何让进去逛的消费者第一眼落在你的产品上?