JSON 키 존재, 값 존재 여부 체크
# JSON Object 생성 JSONObject obj = new JSONObject(); try { obj.put("key1", "value1"); obj.put("key2", null); } catch (JSONException e) { e.printStackTrace(); } # 키 존재 여부 체크 if(obj.has("key1")){ System.out.println("key1 has"); }else{ System.out.println("key1 not has"); } if(obj.has("key2")){ System.out.println("key2 has"); }else{ System.out.println("key2 not has"); } if(obj.has("key3")){ System.ou..
2020.07.22