java apache commons configuration2从本地和网络读取配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java apache commons configuration2从本地和网络读取配置相关的知识,希望对你有一定的参考价值。
XMLConfiguration cnf;
{ // remote
cnf = new BasicConfigurationBuilder<>(XMLConfiguration.class)
.configure(new Parameters().xml()).getConfiguration();
InputStream is = new ByteArrayInputStream(
"xxxxxxxxxxxx".getBytes()
);
new FileHandler(cnf).load(is);
}
{ // local
cnf = new FileBasedConfigurationBuilder<>(XMLConfiguration.class)
.configure(new Parameters().xml().setFileName("xxxxxxx"))
.getConfiguration();
}
以上是关于java apache commons configuration2从本地和网络读取配置的主要内容,如果未能解决你的问题,请参考以下文章
apache进程框架commons-exec,Java
apache进程框架commons-exec,Java
Java使用Apache Commons Exec运行本地命令行命令
java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputStream
获取 java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory 异常
java apache common pool2用法