Groovy:Eclipse中的文件路径

时间:2013-10-02 14:24:39

标签: java eclipse tomcat groovy

尝试从webapps文件夹中读取Xml文件。我使用eclipse作为IDE.Code是def dir = new File("webapps/WEB-INF/file.txt) 如果我从main()测试此类,但是当我在Tomcat服务器上运行它时,它会抛出FileNotFoundException,因为它正在尝试在Eclipse Installation Directory/webapps/WEB-INF/file.txt中找到该文件 应用程序将部署在Tomcat安装目录中。

更新代码

def dir = this.class.getResource("webapps/WEB-INF/appEntryXslt/appEntryToSEGRequest")
dir.eachFileRecurse(FileType.FILES) { file ->
 //do something with the file
}

但这也行不通。我想从目录中读取所有文件。

0 个答案:

没有答案