Struts2动态动作名称

发布于 2024-09-10 17:22:21 字数 189 浏览 3 评论 0原文

问题很简单,我不知道是否有一个简单的解决方案:我使用 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 技术交流群。

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

发布评论

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

评论(2

挽心 2024-09-17 17:22:21

查看 Content-Disposition HTTP 标头来指定资源的文件名。例如:

Content-Disposition: inline; filename: file.jpg

您可以将其添加到 HttpServletResponse 像这样:

response.setHeader("Content-Disposition", "inline; filename: file.jpg");

Check out the Content-Disposition HTTP Header to specify the filename of the resource. For example:

Content-Disposition: inline; filename: file.jpg

You can add this to your HttpServletResponse like so:

response.setHeader("Content-Disposition", "inline; filename: file.jpg");
迷路的信 2024-09-17 17:22:21

还有另一种简单的方法可以做到这一点,您所要做的就是在 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

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