Java Json 읽기, 쓰기 예제 (Jackson)
다음은 Jackson 라이브러리를 사용하여 Java에서 JSON 배열을 읽고 쓰는 예입니다. import com.fasterxml.jackson.databind.ObjectMapper; public class JsonArrayExample { public static void main(String[] args) { // JSON Array 쓰기 ObjectMapper mapper = new ObjectMapper(); User[] users = new User[]{new User("John Doe", 30), new User("Jane Doe", 25)}; try { mapper.writeValue(new File("users.json"), users); } catch (IOException e) { e..
프로그램 언어/Java
2023. 2. 7. 15:54