java servlet:从 BLOB 生成 zip 文件
我正在尝试压缩大量 pdf 文件(作为 BLOB 存储在数据库中),然后将 zip 作为附件返回给用户。
在不遇到内存问题的情况下执行此操作的最佳方法是什么?
另请注意:我实际上需要先合并一些 PDF,然后再将它们添加到 ZipOutputStream。 因此,一次需要在内存中存储几个 PDF。
我认为最好将它们作为临时文件存储在服务器上,然后再将它们全部压缩?
I'm trying to zip a large number of pdf files (stored as BLOBs in the DB) and then return the zip as an attachment to the user.
What's the best way to do this without running into memory issues?
Another note: I actually need to merge some PDFs prior to adding them to the ZipOutputStream. Therefore, a couple PDFs will need to be stored in memory at a time.
I assume it would be best to then store them as temporary files on the server before zipping them all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ZipOutputStreams 在 Java 内存中创建 zip 文件。
请参阅 http://www.exampledepot.com/egs/java.util .zip/CreateZip.html
You can create zip files in memory in Java using ZipOutputStreams.
See http://www.exampledepot.com/egs/java.util.zip/CreateZip.html