Check if a particular JSON Object is available or not

前端 未结 3 2214
太阳男子
太阳男子 2021-02-13 04:38

I have JSON File as below which has to be dumped into an ArrayList:

{
 \"main1\" : [
  {
     \"child1\" : valueA,
     \"child2\" : valueB,
     \"child3\" : va         


        
3条回答
  •  忘掉有多难
    2021-02-13 05:32

    Try this:

    {"main1" : [{
                 "id":"1"
                   "child1" : "valueA",
                   "child2" : "valueB",
                   "child3" : "valueC",
                }, {
                    "id":"2"
                      "child1" : "value1",
                     "child3"  : "value3",
               }]
    }
    

提交回复
热议问题