我正在开发一个Web应用程序,并且我已经在com.xx.yy包中创建了一个属性文件。我需要从作者包com.aa.bb中的类中读取此文件。
我有以下代码:
try {
FileInputStream fileInputStream = new FileInputStream("com/xx/yy/myfile.properties");
internationalizationFile = new Properties();
internationalizationFile.load(fileInputStream);
fileInputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
但它不起作用!!
答案 0 :(得分:2)
您是否尝试通过类加载器加载资源?像:
InputStream in = this.getClass().getClassLoader.getResourceAsStream("com/xx/yy/myfile.properties");
答案 1 :(得分:2)
1)我会打印出绝对路径,以确保文件/资源位于正确的位置。
getResourceAsStream() vs FileInputStream
2)我会使用getResourceAsStream,同样的参考。