有一个简单的yml文件test.yml如下
Having a simple yml file test.yml as follows
color: 'red'
我按如下方式加载和转储文件
I load and dump the file as follows
final DumperOptions yamlOptions = new DumperOptions();
yamlOptions.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
Yaml yaml = new Yaml(yamlOptions);
Object result = yaml.load(new FileInputStream(new File("test.yml")));
System.out.println(yaml.dump(result));
我希望得到
color: 'red'
但是,在转储期间,序列化程序会忽略引号并打印
However, the during the dump, the serializer leaves out the quotes and prints
color: red
如何让序列化程序也打印原始引号?
How can I make the serializer to print the original quotes too?
如何让序列化程序也打印原始引号?
How can I make the serializer to print the original quotes too?
不使用高级 API.引用规范:
Not with the high-level API. Quoting the spec:
标量样式是一种表示细节,不得用于传达内容信息,除非为了标签解析的目的而区分普通标量.
The scalar style is a presentation detail and must not be used to convey content information, with the exception that plain scalars are distinguished for the purpose of tag resolution.
高级 API 实现了整个 YAML 加载过程,按照规范的要求,只为您提供 YAML 文件的内容,而没有任何有关表示细节的信息.
The high-level API implements the whole YAML loading process, giving you only the content of the YAML file, without any information about presentation details, as required by the spec.
话虽如此,您可以使用保留演示详细信息的低级 API:
That being said, you can use the low level API which preserves presentation details:
final Yaml yaml = new Yaml();
final Iterator<Event> events = yaml.parse(new StreamReader(new UnicodeReader(
new FileInputStream(new File("test.yml"))).iterator();
final DumperOptions yamlOptions = new DumperOptions();
final Emitter emitter = new Emitter(new PrintWriter(System.out), yamlOptions);
while (events.hasNext()) emitter.emit(events.next());
但是,请注意,即使这样也不会保留您输入的每个演示细节(例如,不会保留缩进和注释).SnakeYaml 不是往返的,因此无法保留准确的输入布局.
However, be aware that even this will not preserve every presentation detail of your input (e.g. indentation and comments will not be preserved). SnakeYaml is not round-tripping and therefore unable to preserve the exact input layout.
这篇关于使用 SnakeYaml 转储带引号的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)