java properties怎么配置

2024-12-02 06:56:54
推荐回答(2个)
回答1:

一个Properties只能加载一个问题,如果你需要加载多个的话只能多写几个了。
例如:
Properties prop = new Properties();
prop.load(ConfigUtil.class.getClassLoader().getResourceAsStream("config.properties"));

Properties prop1 = new Properties();
prop1.load(ConfigUtil.class.getClassLoader().getResourceAsStream("config.properties1"));

回答2:

键值=value