在服务器端压缩多个文件然后下载它们

发布于 2024-10-12 23:38:14 字数 85 浏览 3 评论 0原文

我需要从服务器下载多个文件并将它们压缩成一个文件。这样用户在下载时只需处理一个文件。

我需要 Java/JSP 代码或 Javascript

I have a requirement to download multiple files from server and zip them into one file. So that user will have to deal with only one file while downloading.

I need in Java/JSP code or Javascript

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风筝有风,海豚有海 2024-10-19 23:38:14

这很容易。

首先,允许用户选择文件(如果应用程序要求他们这样做)。
然后单击下载动态创建一个压缩文件并添加所有选定的文件。允许用户下载此文件。

我过去曾在 PHP 中使用 Zip 函数 来实现类似的功能。

您可以参考 Sun Developers Network (SDN) 的 使用 Java API 压缩和解压缩数据 )在 Oracle 网站上。

It's very easy.

First, allow the user to choose files (if the application requires them to do so).
Then on clicking download create a zipped file dynamically and add all chosen files. Allow the user to download this file.

I'd used Zip functions in PHP for similar functionality in the past.

You can refer Compressing and Decompressing data using Java APIs from Sun Developers Network (SDN) on Oracle website.

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