SnakeYAML:解析时如何禁用下划线剥离?
这是我的问题。我有包含以下对的 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 atorg.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。从他们的邮件列表中得到答案。这里是
OK. Got answer form their mailing list. Here it is