在JDBC中读取资源文件都是这样写的:
public static String getValue(String key){ Properties pro = new Properties(); try { pro.load(new FileInputStream("src/oracle.properties")); } catch (IOException e) { e.printStackTrace(); } return pro.getProperty(key); }
在java Application中运行并没问题,使用了javaBean之后,在servers上运行就会报这个错:
java.io.FileNotFoundException: src\oracle.properties (系统找不到指定的路径。)
将路径改为 "/Test/src/oracle.properties" 还是会报一样的错(Test是web项目名称,资源文件是直接放在src目录下的)
相关分类