如何使用java将yaml文件转换为数组
我需要将 yaml 文件数据访问到 java 文件中。 我使用了 YamlReader 类,现在 yaml 文件已加载到 java 类对象中。 现在所有信息都在对象中,我想从该对象中提取它。我该怎么做。 任何人都可以帮助我吗?我被这个问题困扰了。
i need to access the yaml file data into the java file.
i used the YamlReader class and now the yaml file is loaded into the java class object.
now all the information is in object and i want to extract it from this object.How can i do this .
Can any one help me please i am stuck with this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以阅读地图:
来源:http://code.google.com/p/yamlbeans/< /a>
You can read into a Map:
Source: http://code.google.com/p/yamlbeans/
使用snakeyaml,下面的代码对我不起作用。当 yaml 对象返回我的对象时,它返回一个 LinkedHashMap 类型。因此,我将返回的对象转换为 LinkedHashMap。
Using snakeyaml, the code below didn't work for me. When the yaml object returned my object, it returned a
LinkedHashMap
type. So I cast my returned object into aLinkedHashMap
.