SeouliteLab

[Java/자바] ObjectMapper를 사용한 JSON 파일 읽기 및 쓰기 본문

프로그래밍

[Java/자바] ObjectMapper를 사용한 JSON 파일 읽기 및 쓰기

Seoulite Lab 2024. 3. 8. 08:56

이 문서에서는 Java에서 ObjectMapper를 사용하여 JSON 파일을 읽고 쓰는 방법에 대해 다양한 예제를 제공합니다. ObjectMapper는 Jackson 라이브러리에서 제공하는 JSON 처리 라이브러리로, JSON 데이터를 자바 객체로 변환하거나 자바 객체를 JSON 형식으로 변환하는 데 사용됩니다.

예제 1: JSON 파일 읽기

import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.File;
import java.io.IOException;

public class JsonFileReaderExample {
    public static void main(String[] args) {
        String filePath = "data/sample.json";

        try {
            ObjectMapper mapper = new ObjectMapper();
            File file = new File(filePath);

            // JSON 파일 읽기
            MyDataObject data = mapper.readValue(file, MyDataObject.class);

            System.out.println("JSON 파일 내용:");
            System.out.println(data);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

ObjectMapper를 사용하여 JSON 파일을 읽는 예제입니다. readValue() 메서드를 사용하여 JSON 파일을 자바 객체로 변환합니다.

예제 2: JSON 파일 쓰기

import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.File;
import java.io.IOException;

public class JsonFileWriterExample {
    public static void main(String[] args) {
        String filePath = "data/output.json";

        try {
            ObjectMapper mapper = new ObjectMapper();
            File file = new File(filePath);

            // 자바 객체 생성
            MyDataObject data = new MyDataObject("John Doe", 30);

            // JSON 파일 쓰기
            mapper.writeValue(file, data);

            System.out.println("JSON 파일이 생성되었습니다: " + filePath);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

ObjectMapper를 사용하여 JSON 파일을 쓰는 예제입니다. writeValue() 메서드를 사용하여 자바 객체를 JSON 형식으로 변환하고 파일에 쓰기 작업을 수행합니다.