如何将json对象添加到同级的另一个json对象中?

How to add json object into another json object at the same level?

假设我有 json 个对象

"body" : -{
    "clinic" : -{
         "address" : -{
         "city" : Costa Mesa,
         "state" : CA      
          }

我想在给定示例中添加 'doctor' json 对象及其子对象,使其与诊所处于同一级别。

你只需要获取body的JSONObject,把医生放上去即可

 ((JSONObject) yourJson.get("body")).put("doctor", doctorJSON);