将文件存储在 Web 上下文根中
我正在编写一个 j2ee 应用程序,并且在一个地方从外部源捕获图像,我想将图像存储到我的应用程序的 Web 根目录。
我无法找到它如何获取 Web 根目录的路径?
如果尝试获取的默认路径实际上是 jvm 路径而不是 Web 根目录。
我使用的 Web 服务器是 weblogic,
我可以获取 ReqestContext 等,但这也是 Web url 上下文,而不是真正的路径。
如果有其他方法将其存储为图像那么也可以,
I am writing a j2ee app and at one place i m capturing image from external source and i want to store the image to the web root of my app.
I am not able to find how do it get the path for web root directory?
The defualt path if try to get is actually the jvm path not the web root.
Ther web server i m using is weblogic
I can get the ReqestContext etc but that is also the web url contenxt no the real path.
If there is any other way to store it as image then also it is fine,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ServletContext.getRealPath("your/path/") 。
You can use
ServletContext.getRealPath("your/path/")
.