gpt4 book ai didi

configuration - 使用 apache commons-configuration 和属性文件获取属性集作为映射很热门

转载 作者:行者123 更新时间:2023-12-03 22:49:29 26 4
gpt4 key购买 nike

我想好像 apache 的 commons-configuration 可能/支持从属性文件中获取属性作为 map

到目前为止,我已经设法使用以下代码片段间接地做到了这一点

 Map<String, T> map = new LinkedHashMap<>();
Configuration subset = config.subset(key);
if (!subset.isEmpty()) {
Iterator it = subset.getKeys();
while (it.hasNext()) {
String k = (String) it.next();
//noinspection unchecked
T v = (T) subset.getProperty(k);
map.put(k, v);
}
}
return map;

有谁知道比这更直接的方法?

非常感谢你

最佳答案

我更喜欢你的做法,但如果你喜欢:ConfigurationMap

Map<Object,Object> config = new ConfigurationMap(subset);

关于configuration - 使用 apache commons-configuration 和属性文件获取属性集作为映射很热门,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18912499/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com