我目前有以下方法,它允许我选择在我的 resources/config.properties 文件中定义的属性
private final Properties properties = new Properties();
{
final ClassLoader loader = getClass().getClassLoader();
try(InputStream config = loader.getResourceAsStream("Resources/config.properties")){
properties.load(config);
} catch(IOException e){
throw new IOError(e);
}
}
但我现在想从类路径中选择我的属性,所以我从资源中移动了我的 config.properties 并将它直接放在 src 下。但是我很难知道我现在需要对我的方法进行哪些更改才能从类路径中读取。
相关分类