Struts2动态动作名称
问题很简单,我不知道是否有一个简单的解决方案:我使用 JPA 将图像保存到数据库。我还使用 Struts 2。
我编写了一个操作,从数据库获取图像并将其发送到客户端。
问题是,通过这种方式,当人们尝试在 PC 上下载图像时,他们必须为该文件编写一个名称(默认值类似于 image.action - 始终相同)。
谢谢
The problem is simple, I don't know if has a simple solution: I'm using JPA to persist images to a database. I'm also using Struts 2.
I wrote an action that take the image from the db and sand it to the client.
The problem is that in this way, when people try to download the image on their PC, they have to write a name for the file (default is something like image.action - always the same).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Content-Disposition HTTP 标头来指定资源的文件名。例如:
您可以将其添加到
HttpServletResponse
像这样:Check out the Content-Disposition HTTP Header to specify the filename of the resource. For example:
You can add this to your
HttpServletResponse
like so:还有另一种简单的方法可以做到这一点,您所要做的就是在 strut.xml 中设置 StreamResult
更多详细信息,请参考此页面
There is another simple way to do this, all you have to do is to setup StreamResult in strut.xml
More detail, reference this page