使用 Java 和 struts2 在客户端下载压缩的 CSV 文件

发布于 2024-09-30 16:43:43 字数 28 浏览 1 评论 0原文

如何单击按钮即可下载压缩的 CSV 文件?

How can I download a zipped CSV file on a button click?

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

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

发布评论

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

评论(2

无可置疑 2024-10-07 16:43:43

这是关于如何使用 Struts2 下载动态文件的教程

Here's a tutorial on how to download dynamic file using Struts2.

寻找我们的幸福 2024-10-07 16:43:43

在 Struts Action 中,您需要设置适当的响应标头,然后发送文件。

  response.setContentType("application/zip");
  response.addHeader("Content-Disposition", 
       "attachment; filename=file.csv.zip");
  IOUtils.copy(zippedCsvFile, response.getOutputStream());

当然,即时进行 zip 压缩也是一种选择,就像生成整个文件一样。如果是这样,您可能需要查看 DeflaterOutputStream 和 一些用于写入 CSV 数据的库< /a>.

In your Struts Action you need to set the appropriate response headers and then send the file.

  response.setContentType("application/zip");
  response.addHeader("Content-Disposition", 
       "attachment; filename=file.csv.zip");
  IOUtils.copy(zippedCsvFile, response.getOutputStream());

Doing the zip compression on the fly is also an option, as is generating the whole file, of course. If so, you may want to look at DeflaterOutputStream and some library to write CSV data.

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