apache common包的configuration2使用
程序员文章站
2022-03-15 14:55:07
...
需求:
利用apache的common包中的configuration2进行属性文件的操作
实现:
public static PropertiesConfiguration loadProperties(File file)
throws ConfigurationException {
Parameters params = new Parameters();
PropertiesConfiguration configuration = new FileBasedConfigurationBuilder<PropertiesConfiguration>(
PropertiesConfiguration.class).configure(
params.properties().setFile(file)).getConfiguration();
return configuration;
}
configuration2和configuration1有区别
上一篇: python期末复习题
推荐阅读