Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的项目中,用户上传图像文件,这些文件保存在驱动器的上下文根目录之外。我需要在 jsp 中显示这些图像。我用struts2。任何帮助将不胜感激。
看看这个教程。我认为这正是您正在寻找的。
编辑:
这个想法是告诉动作你想要什么图像。这是在请求中添加参数完成的。例如,在示例中,它使用参数imageId,但您可以更改此策略并使用不同的东西,例如图像名称。然后你应该以这种方式调用动作(根据教程):
imageId
http://localhost:8080/myAppContext/ImageAction?imageId=darksouls.jpg
另外,请记住@Dave Newton 的评论是一个很好的选择。请参阅this other example。