无法从JSON字符串获取数组

时间:2018-11-01 03:08:59

标签: arrays json

我有一个JSON字符串:

"order-lines":{
   "@type":"array",
   "order-line": {
      "id":{"@type":"integer","$":"4164136"},
      "created-at":{"@type":"dateTime","$":"2018-05-10T16:06:16-07:00"},
      ....
   }
} 

由于此处的订单行属于arrary类型,因此我希望“ order-line”应该是包含多个订单行的arrary,例如-

"order-line" : [
   {
     "id":{"@type":"integer","$":"4164136"},
     ...
   }
]

但是,正如您在第一个json字符串中看到的那样,“ order-lines”内部没有数组,它只是一个“ order-line”对象。为什么?如何将其解析为java数组对象?

0 个答案:

没有答案