这是我的.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 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