갑이 자꾸 요구를 바꿔서 으으으 짜증 여하튼 api 콜 json 특정 key 가 없을때 처리 예)test{ ch1:'test', ch2:'test2', ch3:'test3'} 어쩔때는 test{ ch1:'test', ch3:'test3'} 이런경우 jsonobject 에서는 object.has 로 키가 있는지 체크 가능 하여 최종 소스JSONObject jsonObj = new JSONObject(리스트데이터 받아오기);JSONArray rtn_record = new JSONArray();rtn_record = jsonObj.getJSONArray("test");// 레코드 데이터가 있을때만 INSERTif (rtn_record.length() > 0) { for (int i = 0; i < rtn_re..