欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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有区别

摘自:www.xhuojia.com/zhuanlan/2375701521.html