假设我有json对象
"body" : -{
"clinic" : -{
"address" : -{
"city" : Costa Mesa,
"state" : CA
}
在给定的示例中,我想添加“ doctor” json对象及其子对象与诊所的级别相同。
答案 0 :(得分:1)
您只需要获取身体的JSONObject并放置医生
((JSONObject) yourJson.get("body")).put("doctor", doctorJSON);