AVA - 2개 이상의 JSONObject 합치기(merge)
프로젝트 진행 중 API를 통해 JSONObject를 받고 추가로 내가 만든 JSONObject를 합쳐서 리턴해야 하는 경우가 발생했다.
@RequestMapping(value = "/jsonMerge")
public JSONObject jsonMerge(HttpServletRequest request, ModelMap model) throws Exception {
//시즌별 티어 - jsonArray
JSONArray jsonArrST = new JSONArray();
String[] season = {"2018", "2019", "2020", "2021"};
String[] tier = {"Bronze", "Silver", "Gold", "Platinum"};
for(int i=0; i<4; i++){
JSONObject jsonST = new JSONObject();
jsonST.put("season", season[i]);
jsonST.put("tier", tier[i]);
jsonArrST.add(jsonST);
}
//merge할 jsonObject1
JSONObject jsonPart1 = new JSONObject();
jsonPart1.put("name", "GARY");
jsonPart1.put("age", "25");
jsonPart1.put("seasonTier", jsonArrST);
jsonPart1.put("nickName", "초코잠보");
//merge할 jsonObject2
JSONObject jsonPart2 = new JSONObject();
jsonPart2.put("status", 200);
jsonPart2.put("message", "SUCCESS");
//최종으로 보낼 jsonObject
JSONObject jsonRes = new JSONObject();
JSONObject[] objs = new JSONObject[] { jsonPart1, jsonPart2 };
for (JSONObject obj : objs) {
Iterator it = obj.keySet().iterator();
while (it.hasNext()) {
String key = (String)it.next();
jsonRes.put(key, obj.get(key));
}
}
return jsonRes;
}
실행시켜보면 jsonPart1과 jsonPart2가 잘 합쳐졌다!
Author And Source
이 문제에 관하여(AVA - 2개 이상의 JSONObject 합치기(merge)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ddingmun8/JAVA-2개-이상의-JSONObject-합치기merge저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)