问题描述
有一个简单的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设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)