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.
images我的文件夹中有一张图片war,我的动作类位于war/WEB-INF/classes/some_package. 我希望在我的动作类中访问该图像。我相信我可以通过使用来做到这一点ServletContext.getResourceAsStream("images/my_image.png")(因为它以战争文件夹为基础),但是有没有更直接的方法可以做到这一点Struts2?
images
war
war/WEB-INF/classes/some_package
ServletContext.getResourceAsStream("images/my_image.png")
Struts2
不,那是您访问类路径资源的方式,这与 Struts 无关。
但是,您可以使用“流”结果类型将其发送回客户端。