SnakeYAML:解析时如何禁用下划线剥离?

发布于 2024-08-30 07:13:51 字数 323 浏览 8 评论 0原文

这是我的问题。我有包含以下对的 YAML 文档:

run_ID: 2010_03_31_101

当此 get 被解析时 org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlInt:159 下划线被删除并且构造函数返回Long 20100331101 而不是我真正需要的未经修改的String "2010_03_31_101"

问题:如何 我可以禁用此行为并强制解析器使用 String 构造函数吗 而不是长?

Here's my problem. I have YAML doc that contains the following pair:

run_ID: 2010_03_31_101

When this get's parsed at
org.yaml.snakeyaml.constructor.SafeConstructor.ConstructYamlInt:159
underscores get stripped and Constructor returns Long 20100331101
instead of unmodified String "2010_03_31_101" that I really need.

QUESTION: How
can I disable this behavior and force parser to use String constructor
instead of Long?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人生百味 2024-09-06 07:13:51

好的。从他们的邮件列表中得到答案。这里是

您好,根据规范
(http://yaml.org/type/int.html):任何
数字中的“_”字符是
忽略,允许可读
大值的表示

你有几种方法可以解决这个问题。 1)做
不依赖隐式类型,使用引号
(单或双)run_ID:
'2010_03_31_101'

2) 关闭整数解析器(如
它是在这里为浮动完成的) 链接
1
链接 2

3) 为 int 定义自己的模式
链接 3

请注意,当您开始
偏离其他收件人的规格
可能无法解析您的 YAML 文档。
使用引号是安全的。

  • 安德烈

OK. Got answer form their mailing list. Here it is

Hi, according to the spec
(http://yaml.org/type/int.html): Any
“_” characters in the number are
ignored, allowing a readable
representation of large values

You have a few ways to solve it. 1) do
not rely on implicit types, use quotes
(single or double) run_ID:
'2010_03_31_101'

2) Turn off resolver for integers (as
it is done here for floats) link
1
link 2

3) Define your own pattern for int
link 3

Please be aware that when you start to
deviate from the spec other recipients
may fail to parse your YAML document.
Using quotes is safe.

  • Andrey
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文