我想加载属性文件和命令行参数,然后在运行时动态配置日志记录,我以前可以这样做:
Properties configuration;
...
ByteArrayOutputStream os = new ByteArrayOutputStream();
ByteArrayInputStream is;
byte[] buf;
try {
configuration.store(os, "logging");
buf = os.toByteArray();
is = new ByteArrayInputStream(buf);
java.util.logging.LogManager.getLogManager().readConfiguration(is);
} catch (IOException e) {
System.err.println("Failed to configure java.util.logging.LogManager");
}
属性很好,但可以用 PropertiesConfiguration 来完成吗?
(仅供参考,我希望利用 commons-configuration 提供的属性数组)