Java 配置文件读写 Commons Configuration

openkk 13年前
     <p><a href="http://www.open-open.com/open68756.htm" target="_blank">Commons Configuration</a>是一个java应用程序的配置管理类库。可以从properties或者xml文件中加载软件的配置信息,用来构建支撑软件运 行的基础环境。在一些配置文件较多较的复杂的情况下,使用该配置工具比较可以简化配置文件的解析和管理。也提高了开发效率和软件的可维护性。</p>    <p>下面是一个加载 properties 配置文件的代码:</p>    <pre class="brush:java; toolbar: true; auto-links: false;">CompositeConfiguration config = new CompositeConfiguration();  config.addConfiguration(new PropertiesConfiguration("oschina.properties"));    String usernaem = config.getString("username");  String password = config.getString("password"); </pre>    <p></p>    <p>新版本包含了很多bug的修复,详细改进记录请看:</p>    <p><a href="/misc/goto?guid=4958189597245627541">http://commons.apache.org/configuration/changes-report.html</a></p>