标签: java yaml snakeyaml
说我有:
item: field: value another: another
有没有办法让我把它作为这个形式的数组:
[value, another]
在java中使用SnakeYAML可以毫不费力地完成吗?
答案 0 :(得分:2)
item: [value, another]
或
item: - value - another