java servlet:从 BLOB 生成 zip 文件

发布于 2024-07-29 01:04:01 字数 221 浏览 8 评论 0原文

我正在尝试压缩大量 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

病女 2024-08-05 01:04:01

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文