Dumping values with quotes with SnakeYaml(使用 SnakeYaml 转储带引号的值)
问题描述
有一个简单的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 转储带引号的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 SnakeYaml 转储带引号的值


- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01