1

我在 TOMCAT 上部署了一个 GWT webapp,它已经成功部署,war 文件在 webapps 目录中。现在应用程序需要访问文件“C:\apache-tomcat-7.0.42\webapps\TestHarness\modxml.xml”。当我提到相对路径,即“..\TestHarness\modxml.xml”时,应用程序无法找到该文件。路径应该是什么,以便我的应用程序可以获取该 modxml.xml 文件。

4

1 回答 1

0

我建议将此文件作为资源从类路径访问,而不是直接通过文件系统访问。将文件添加到类路径上的目录中,例如源文件夹中的包。然后使用以下代码访问该文件:

File file = null;
try {
    file = new File(this.getClass().getResource("modxml.xml").toURI());
} catch (URISyntaxException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

虽然我不推荐这种方法,但您可以从HttpServletRequestusing获取应用程序的位置request.getServletContext().getRealPath("/")。您可以将此值存储在一个字符串中,然后为文件添加后缀并在构造函数中使用它File

于 2013-09-05T10:21:26.853 回答