使用 SnakeYaml 用引号转储值 [英] Dumping values with quotes with SnakeYaml

查看:42
本文介绍了使用 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 用引号转储值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆