简体   繁体   中英

Remove nested key from a json object using java

I have the following json structure

{  
   "MerchHierarchyEBM":{  
      "DataArea":{  
         "Division":{  
            "UpdatedBy":"SN",
            "Group":{  
               "GroupName":"Womens Fashion*",
               "UpdatedBy":"Data Migration",
               "UpdatedOn":"22-NOV-17",
               "GroupID":"200"
            },
            "DivisionName":"Fashion",
            "UpdatedOn":"22-NOV-17",
            "DivisionID":"2000"
         }
      }
   }
}

and i want to remove the "Group" key and value from the json object using java i tried few things but didn't work following is my code .

JSONObject jsonObjIncomingDatanew =new JSONObject(Result);
jsonObjIncomingDatanew.remove("MerchHierarchyEBM.DataArea.Division.Group");

Try this:

JSONObject jsonObject = new JSONObject(Result);
jsonObject
  .getJSONObject("MerchHierarchyEBM")
  .getJSONObject("DataArea")
  .getJSONObject("Division")
  .remove("Group");

Or if getJSONObject() doesn't work, replace it with getAsJsonObject() .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM