我有 Java webapp,我正在尝试从 classpth 读取文件。
if (fileName == null){
fileName = Thread.currentThread().getContextClassLoader().getResource("config.properties");
}
objFile = new File(fileName.toURI());
我的类路径中有 config.properties。WEB-INF/类。当我在本地检查时,它会给出:fileName.toURI()
,它给我file:/D:/dev/Tomcat_6_0/webapps/testApp/WEB-INF/classes/config.properties
。并且工作正常。
问题出在生产 linux 服务器上,我在那里得到了这条路径vfsfile:/export/home/u/bin/jboss-5.1.0.BE/server/default/deploy/testApp.war/WEB-INF/classes/config.properties
。
我得到以下异常。
Caused by: java.lang.IllegalArgumentException: URI scheme is not "file"
at java.io.File.<init>(File.java:366)
at com.utils.ConfigLoader.loadConfigFilePath(ConfigLoader.java:87)
处理 vfs 的解决方法是什么?