说我有:

item:
  field: value
  another: another


有什么办法让我以这种形式在数组中获取它:

[value, another]


可以在Java中使用SnakeYAML轻松完成吗?

最佳答案

item: [value, another]


要么

item:
  - value
  - another

09-28 12:10