如何用JSON表示地图列表

时间:2012-10-24 16:19:30

标签: json map

我想用Json代表List<Map<String,List<String>>>

示例,我想代表:

  • / bin to * .jar和* .war
  • / cfg to * .properties and * .data

有人可以确认以下内容是正确的吗?

{
  "directories": [
    {
      "name": "bin",
      "regex": [
        "*.jar",
        "*.war"
      ]
    },
    {
      "name": "cfg",
      "regex": [
        "*.properties",
        "*.data"
      ]
    }
  ]
}

1 个答案:

答案 0 :(得分:1)

显然你现在已经解决了这个问题但我在追问类似问题时发现了这一点。根据{{​​3}},您发布的字符串按原样有效。