使用 Java 和 struts2 在客户端下载压缩的 CSV 文件
如何单击按钮即可下载压缩的 CSV 文件?
How can I download a zipped CSV file on a button click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何单击按钮即可下载压缩的 CSV 文件?
How can I download a zipped CSV file on a button click?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这是关于如何使用 Struts2 下载动态文件的教程 。
Here's a tutorial on how to download dynamic file using Struts2.
在 Struts Action 中,您需要设置适当的响应标头,然后发送文件。
当然,即时进行 zip 压缩也是一种选择,就像生成整个文件一样。如果是这样,您可能需要查看 DeflaterOutputStream 和 一些用于写入 CSV 数据的库< /a>.
In your Struts Action you need to set the appropriate response headers and then send the file.
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.