标签: tomcat gwt file-access
有没有办法检索Tomcat本地GWT目录以保存文件?
为了检索文件,它是
new File(getClass().getResource(nameOfAFile).getPath());
因此,我如何检索tomcat主机的路径以保存文件'hello.xml'?
答案 0 :(得分:1)
在tomcat中,您可以使用ServletContext.getRealPath()获取webapp中文件的路径,然后您可以导航到“../”以查找tomcat目录。