我正在尝试使用snakeyaml 制作一个转储int、字符串和字符串[] 的函数。问题是我不知道如何编写函数以便可以插入信息。
例如:
public void testDump() {
Map<String, Object> data = new HashMap<String, Object>();
data.put("name", "Silenthand Olleander");
data.put("race", "Human");
data.put("traits", new String[] { "ONE_HAND", "ONE_EYE" });
Yaml yaml = new Yaml();
String output = yaml.dump(data);
System.out.println(output);
}
我需要像"name"
和"Silenthand Olleander"
可配置的东西。我也不知道这个函数到底是做什么的。它会创建一个新文件吗?因为我需要它在现有的 strings.yml 文件中添加一行。所以我希望 string.yml 的格式是这样的:
#String.yml file
0 name_here The array of argument messages here.
1 name_here Another array of argument messages here.
2 name_here And again... I think you get the point.