Gson 썸네일형 리스트형 [JAVA] GSON 라이브러리 GSON은 Java에서 JSON 형태를 좀 더 쉽게 다룰 수 있게 해주는 라이브러리이다. 예제 코드는 아래와 같다. 1. toJson public void printFileJSON(List todoList) { File file = new File("todo.json"); Gson gson = new Gson(); try { FileWriter fileWriter = new FileWriter(file); PrintWriter printWriter = new PrintWriter(fileWriter); printWriter.print("["); for (Todo todo : todoList) { //JSON 변환 String jsonInString01 = gson.toJson(todo); printWri.. 더보기 이전 1 다음