如何动态查找 webapp 目录中是否存在某些图像文件?
假设我试图找到网络应用程序中存在的一些图像文件,但不知道真正的路径,即我有绝对路径,我如何获取该路径???
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也尝试像这样使用 getRealPath
,例如 weblogic 有一个名为 的属性
,需要将其设置为 true 才能使 getrealpath 正常工作,
http://rocksolutions.wordpress。 com/2010/07/15/servletcontext-getrealpath-is-cause-problems-on-weblogic/
try using getRealPath like this
also , weblogic for example has a property named
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/