im using snakeyaml 1.27
i want to write special characters to a yaml file:
section.put("Success", "\uD83D\uDE03");
section.put("Warning", "\uD83D\uDE2E");
section.put("Error", "\uD83D\uDE26");
but the output is either
Success: ?
Warning: ?
Error: ?
or
Success: "\U0001f603"
Warning: "\U0001f62e"
Error: "\U0001f626"
if i change
DumperOptions().setAllowUnicode(true/false);
If i just read and write a yaml the same thing appears. its able to read the but not write it back.
code:
DumperOptions o = new DumperOptions();
o.setPrettyFlow(true);
o.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
o.setAllowUnicode(true);
Yaml yaml = new Yaml(o);
InputStream is = new FileInputStream(file);
Map<String, Object> data = yaml.load(is);
is.close();
StringWriter writer = new StringWriter();
yaml.dump(data, writer);
FileWriter fw = new FileWriter(file);
fw.write(writer.toString());
fw.close();
yaml before:
Bot_Token: f1432d2asdummy
Owner_ID: '123456'
Command_Trigger: '-'
Game: Ready playing music. !Play
Emojis:
Success:
Warning:
Error:
yaml after:
Bot_Token: f1432d2asd3dummy
Owner_ID: '123456'
Command_Trigger: '-'
Game: Ready playing music. !Play
Emojis:
Success: ?
Warning: ?
Error: ?
Replace
FileWriter
WithnewBufferdWriter()