如何使用SnakeYAML将值获取到数组中

时间:2011-11-25 03:08:04

标签: java yaml snakeyaml

说我有:

item:
  field: value
  another: another

有没有办法让我把它作为这个形式的数组:

[value, another]

在java中使用SnakeYAML可以毫不费力地完成吗?

1 个答案:

答案 0 :(得分:2)

item: [value, another]

item:
  - value
  - another