Gson

1 개요[ | ]

Gson
지슨, 쥐슨
  • 자바 오브젝트와 JSON간의 직렬화/역직렬화를 위한 오픈소스 자바 라이브러리
  • 개발사: 구글
  • 첫 릴리즈: 2008년
  • 아파치 라이선스 2.0
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
    <groupId>com.google.code.gson</groupId>
    <artifactId>gson</artifactId>
    <version>2.8.0</version>
</dependency>
import com.google.gson.Gson;

class Person {
    private String name;
    private int age;

    Person(String name, int age) {
        this.name = name;
        this.age = age;
    }
}

public class App {
    public static void main(String[] args) {
        Person person1 = new Person("John Smith", 99);
        Gson gson = new Gson();
        String result = gson.toJson(person1);
        System.out.println(result);
    }
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}