我正在使用snakeyaml 来处理Java 中的yaml 配置文件。
我的 YAML 文件结构是这样的:
配置.yml
User1: "John Doe"
User2: "Jane Smith"
User3: "James Doe"
当我做:
Yaml yaml = new Yaml();
Map<String, String> data = new HashMap<String, String>();
data.put("KR", "test");
String output = yaml.dump(data);
FileWriter f = new FileWriter("config.yml");
f.write(output);
没有任何内容写入配置文件。
我想将我的键值写入config.yml
文件。