전체 글 썸네일형 리스트형 [Spring 강좌]json 파싱하기 1.pom.xml 에 dependency 추가 com.googlecode.json-simple json-simple 1.1 2.java 코딩 String jsonStr = "{\"members\":[" + "{\"name\":\"홍길동\"," + "\"email\":\"gildong@abc.com\"," + "\"age\":\"25\"" + "}," + "{\"name\":\"홍길서\"," + "\"email\":\"gilseo@abc.com\"," + "\"age\":\"23\"" + "}]}"; try { JSONParser jsonParser = new JSONParser(); JSONObject jsonObj = (JSONObject) jsonParser.parse(jsonStr); JSONArr.. 더보기 이전 1 2 3 4 다음