gpt4 book ai didi

java - 检查类型安全配置中的部分 key

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:43:55 25 4
gpt4 key购买 nike

我正在使用类型安全配置来读取一些初始配置。

有没有办法检查类型配置中是否存在 key 的一部分。例如我有以下配置:

foo {
bar {
x = 42
y = 92
}
}

在这里,我想检查我的 conf 是否包含 foo.bar 的任何配置我不在乎 xy 是否存在,或者是否存在任何一个。

我只想检查 bar 的配置是否存在于配置中。可能吗?

最佳答案

Config 有检查路径是否存在的方法

config.hasPath("foo.bar");

鉴于以下

foo {
bar {
x = 42
}
}

System.out.println(config.hasPath("foo.bar"));
System.out.println(config.hasPath("foo.bar.x"));

我明白了

true
true

如果我删除 x = 42 我得到

true
false

关于java - 检查类型安全配置中的部分 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29898397/

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