检索文件访问的本地 Tomcat 路径
有没有办法检索 Tomcat 本地 GWT 目录以保存文件?
为了检索文件,
new File(getClass().getResource(nameOfAFile).getPath());
因此我将如何检索 tomcat 主机的路径以保存文件“hello.xml”?
Is there a way to retrieve the Tomcat local GWT directory in order to save a file?
In order to retrieve a file it's
new File(getClass().getResource(nameOfAFile).getPath());
Therefore how would I retrieve path of the tomcat host in order to save a file 'hello.xml'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在tomcat中,可以使用 ServletContext.getRealPath() 获取 web 应用程序中文件的路径,然后您可以导航到“../”来查找 tomcat 目录。
In tomcat, you can use ServletContext.getRealPath() to get the path for a file in your webapp then you can do navigate to "../" to find tomcat dir.