메이븐 사용 시, 메이븐 레포지토리에서 json(id - org.json / version - 20200518)을 가져옵니다. 예시) JSON 파일에서 키 및 값 출력 String content; try { content = new String(Files.readAllBytes(Paths.get("파일 경로"))); JSONObject o1 = new JSONObject(content); //System.out.println(content); //json 파일 내용 Iterator iiter = o1.keys(); String key = ""; while (iiter.hasNext()) { key= iiter.next(); System.out.println("1st key : " + key); //Sys..