`
gaoyuntao2005
  • 浏览: 311090 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Apache Commons Configuration简介

 
阅读更多
使用Commons  Configuration可以很好的管理我们的配置文件的读写,官网:http://commons.apache.org/configuration/
它支持对配置文件的读取,保存,运行期加载,操作非常方便。下面简单的一下代码示例一下,具体的其他操作文档可以去官方找到:
需要用到commons-lang,commons-collections,commons-logging,log4j jar包
<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->public class Test {
    
    
public static  void main(String[] args) throws ConfigurationException, InterruptedException {
        xmlLoadTest();
        fileLoadTest();
        saveTest();
        runtimeReload();
    }

    
//xml文件
    public static void xmlLoadTest() throws ConfigurationException{
        String file 
= "test1.xml";
        XMLConfiguration config 
= new XMLConfiguration(Test.class.getResource(file));
        System.out.println(config.getString(
"conf.url"));
        System.out.println(config.getDouble(
"conf.money"));
    }
  
    
//properties文件
    private static void fileLoadTest() throws ConfigurationException {
        String file 
= "test2.properties";
        PropertiesConfiguration config 
= new PropertiesConfiguration(Test.class.getResource(file));
        System.out.println(config.getString(
"url"));
    }

    
//保存到文件
    public static void saveTest() throws ConfigurationException{
        String file 
= "test2.properties";
        PropertiesConfiguration config 
= new PropertiesConfiguration(Test.class.getResource(file));
        
//设置自动保存 或显示调用 config.save();
        config.setProperty("colors.background""#000000");
        config.setAutoSave(
true);
    }

    
//运行期参数修改加载
    public static void runtimeReload() throws ConfigurationException, InterruptedException{
        String file 
= "test2.properties";
        PropertiesConfiguration config 
= new PropertiesConfiguration(Test.class.getResource(file));
        config.setReloadingStrategy(
new FileChangedReloadingStrategy());
        System.out.println(config.getString(
"url"));
        Thread.sleep(
10000);//在休眠期间,手动修改文件里面的url值后观察日志情况
        System.out.println(config.getString("url"));
    }

}

Configuration 的参数可能来自下面的资源: 
     Properties files XML documents,Property list files (.plist),JNDI,JDBC Datasource,System properties, Applet parameters,Servlet parameters
分享到:
评论

相关推荐

    Apache-Configuration-Demo:Apache Commons Configuration 2学习

    Apache Commons Configuration 是一个流行的 Java 库,用于处理应用程序的配置设置。这个库为开发者提供了灵活的方式来管理和读取配置数据,可以是从文件、系统属性、环境变量或是其他来源获取。Apache Commons ...

    apache commons configuration api_zh

    apache configuration api_zh

    commons-configuration2-2.1.1-API文档-中文版.zip

    Maven坐标:org.apache.commons:commons-configuration2:2.1.1; 标签:apache、commons、configuration2、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档...

    apache commons jar(commons所有的jar包,从官网下载提供给大家)

    apache-sanselan-incubating-0.97-bin bcel-5.2 commons-beanutils-1.9.2-bin commons-chain-1.2-bin commons-cli-1.3.1-bin commons-codec-1.10-bin commons-collections4-4.0-bin commons-configuration-1.10-bin...

    org.apache.commons.configuration.XMLConfiguration的读取范例

    Apache Commons Configuration 是一个Java库,它提供了一组高级配置接口和类,用于处理应用程序的配置文件。在这些接口中,`XMLConfiguration` 是一个重要的组件,专门设计用来处理XML格式的配置文件。在这个范例中...

    apache-commons-configuration-1.9-8.el7.noarch (1).rpm

    离线安装包,测试可用

    Apache的Commons-configuration自动加载特性

    Apache Commons Configuration 是一个开源的Java库,用于处理配置文件。这个库提供了一种灵活的方式来管理和访问应用程序的配置参数,无论是从传统的属性文件、XML文件、系统属性还是其他数据源。在"Apache的Commons...

    Configuration对properties、xml配置文件的【增删改查】及动态加载

    Apache Commons Configuration库提供了一个强大的工具集,用于处理各种类型的配置文件,包括properties和XML格式。这个库使得在运行时对配置进行【增删改查】操作变得简单,同时支持动态加载,从而实现配置的实时...

    加载配置文件的方式(java[Properties,InputStream]与apache-commons-configuration组件)

    本篇文章将深入探讨两种加载配置文件的方法——使用Java内置的`Properties`类和`InputStream`,以及第三方库Apache Commons Configuration。我们将讨论每种方法的优缺点,并通过实例来演示如何使用它们。 首先,让...

    官方commons-configuration-1.10的jar包

    Apache Commons Configuration 是一个Java库,专门用于处理配置文件和提供灵活的访问机制。这个库的主要目标是简化在Java应用程序中管理配置参数的过程。在给定的"commons-configuration-1.10"版本中,我们可以深入...

    Apache Commons API.rar

    这个"Apache Commons API.rar"压缩包包含五个关键的Apache Commons子项目的API文档,分别是BeanUtils、Lang、Configuration、Logging和Collections。让我们逐一深入了解一下这些API及其提供的功能。 1. **Apache ...

    org.apache.commons jar

    8. **Apache Commons Configuration**: 提供了灵活的配置文件处理,可以读取 XML、INI、系统属性等多种格式的配置文件。 9. **Apache Commons JCI**: 用于Java编译器接口,可以帮助你在运行时动态编译 Java 代码。 ...

    commons-configuration2-2.0.jar

    commons-configuration2-2.0.jar Apache commons-configuration 读取配置文件

    Apache Commons工具集简介

    ### Apache Commons工具集简介 #### 一、Apache Commons概述 Apache Commons是一套为Java开发者提供的开源工具库,它由一系列经过验证的、可重用的Java组件构成,旨在解决日常开发中的常见问题,并提高开发效率。...

    commons-configuration代码实例

    Apache Commons Configuration 是一个 Java 库,它为处理各种类型的配置文件和提供了一种灵活的 API。这个库使得在 Java 应用程序中读取、写入和管理配置参数变得非常简单。下面我们将深入探讨 Commons ...

    Apache commons API(整套全版)

    Commons-beanutils-API Commons-collections-API Commons-configuration-API Commons-lang-API Commons-logging-API Dom4j_API java api javascript Struts API J2EE API

    commons-configuration-1.10.jar

    《Apache Commons Configuration详解》 Apache Commons Configuration 是一个用于处理配置文件的开源库,主要应用于Java环境中。这个库提供了一种灵活的方式来读取和管理不同格式的配置文件,如XML、INI、...

    Apache Commons Configuration/FileUpload

    博文链接:https://log-cd.iteye.com/blog/211727

Global site tag (gtag.js) - Google Analytics