为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

qq_遁去的一_1 2021-06-21 17:12:32
我目前有以下方法,它允许我选择在我的 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 下。但是我很难知道我现在需要对我的方法进行哪些更改才能从类路径中读取。
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 238 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信