如何动态查找 webapp 目录中是否存在某些图像文件?

发布于 2024-12-05 03:00:44 字数 141 浏览 0 评论 0原文

假设我试图找到网络应用程序中存在的一些图像文件,但不知道真正的路径,即我有绝对路径,我如何获取该路径???

javax.servlet.servletcontext.getrealpath("");

不适合我..

谢谢

suppose i m trying to find some image file is present in the web app but don't know the real path i.e. im having absolute path how do i get that path???

javax.servlet.servletcontext.getrealpath("");

is not working for me..

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

合久必婚 2024-12-12 03:00:44

也尝试像这样使用 getRealPath

ServletContext context = session.getServletContext();
String realContextPath = context.getRealPath(request.getContextPath());

,例如 weblogic 有一个名为 的属性

<show-archived-real-path-enabled>true</show-archived-real-path-enabled>

,需要将其设置为 true 才能使 getrealpath 正常工作,
http://rocksolutions.wordpress。 com/2010/07/15/servletcontext-getrealpath-is-cause-problems-on-weblogic/

try using getRealPath like this

ServletContext context = session.getServletContext();
String realContextPath = context.getRealPath(request.getContextPath());

also , weblogic for example has a property named

<show-archived-real-path-enabled>true</show-archived-real-path-enabled>

that needs to be set to true in order for getrealpath to work,
http://rocksolutions.wordpress.com/2010/07/15/servletcontext-getrealpath-is-cause-problems-on-weblogic/

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