JSON을 해석하고 값을 어레이로 변환하는 방법 public static void parseProfilesJson(String the_json){ try { JSONObject myjson = new JSONObject(the_json); JSONArray nameArray = myjson.names(); JSONArray valArray = myjson.toJSONArray(nameArray); for(int i=0;i 0) { values.add(line); } } } catch (IOException e) { LOG.warn("Unable to read lines in String:" + onlyValues); } return values; } 언급URL : https://stackoverflow...