SnakeYaml 获取堆叠键

SnakeYaml get stacked keys

当这是我的 .yml 文件时:

test1: "string1"
test2:
  test3: "string2"

如何获取 test3 的值?

Map<String, Object> yamlFile = new Yaml().load(YamlFileInputStream);

yamlFile.get("test1"); // output: string1
yamlFile.get("test2"); // output: {test3=string2}

yamlFile.get("test2.test3"); // output: key not found

YAML 没有 “堆叠键”。它具有嵌套映射。点 . 不是特殊字符,可以正常出现在键中,因此您不能使用它来查询嵌套映射中的值。

您已经展示了如何访问包含 test3 键的映射,您可以简单地从那里查询值:

((Map<String, Object)yamlFile.get("test2")).get("test3");

但是,将 YAML 文件的结构定义为 class:

要简单得多
class YamlFile {
    static class Inner {
        public String test3;
    }

    public String test1;
    public Inner test2;
}

然后你可以这样加载它:

YamlFile file = new Yaml(new Constructor(YamlFile.class)).loadAs(
    input, YamlFile.class);
file.test2.test3; // this is your string