猿问

从 Classpath 而不是从 resources/config.properties 中检索属性

我目前有以下方法,它允许我选择在我的 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 下。但是我很难知道我现在需要对我的方法进行哪些更改才能从类路径中读取。


qq_遁去的一_1
浏览 239回答 2
2回答
随时随地看视频慕课网APP

相关分类

Java
我要回答