JAVA2 [JAVA] Gson JsonParser 구글에서 만든 Json Mapper 이다. gson은 maven저장소를 지원한다. 1.pom.xml 설정 com.google.code.gson gson 2.8.5 2.객체를 JSON으로 변경 2-1) Gson gson = new Gson(); 2-2) String json = gson.toJson(객체); 3.JSON을 객체로 변경 3-1)Test test = gson.fromJson(json, Test.class); - 첫번째 : 문자열, 두번째 : 매핑할 클래스 4.JSON 만들기 4-1)JsonObject object = new JsonObject object(); 4-2)object.addProperty("key", "value"); 5.json 파싱 5-1)JsonParser parser = n.. 2020. 2. 25. [JAVA] Reflection 개념 reflection : 반사 JVM에서 실행 중인 애플리케이션의 행위를 확인하고 변경하기 위해 제공하는 기능이다. 구체적인 클래스 타입을 알지 못하여도 해당 클래스의 메소드, 타입, 변수 등에 접근할 수 있도록 해주는 API이다. 성능 및 보안을 제한하는 단점이 있어 사용에 제한을 둬야 한다. **참조** https://docs.oracle.com/javase/tutorial/reflect/ Trail: The Reflection API (The Java™ Tutorials) Uses of Reflection Reflection is commonly used by programs which require the ability to examine or modify the runtime behavior of.. 2019. 5. 22. 이전 1 다음