Notice
Recent Posts
Recent Comments
Link
투케이2K
505. (Android/Java) [GSON] SerializedName , Expose 사용해 모델 클래스 null 널 데이터 제외 JsonObject 생성 본문
Android
505. (Android/Java) [GSON] SerializedName , Expose 사용해 모델 클래스 null 널 데이터 제외 JsonObject 생성
투케이2K 2023. 2. 24. 21:44[개발 환경 설정]
개발 툴 : AndroidStudio
[소스 코드]
// -------------------------------------
// [로직 처리 실시]
// -------------------------------------
try {
// [M_Person 클래스 생성 실시]
M_Person m_person = new M_Person("투케이", 29, null);
// [GSON 사용해 Object to Json 변환 실시]
String jsonString = new Gson().toJson(m_person);
// [로그 출력 실시]
Log.i("---","---");
Log.w("//===========//","================================================");
Log.i("","\n"+"["+String.valueOf(ACTIVITY_NAME)+" >> onCreate() :: 로그 출력]");
Log.i("","\n"+"[jsonString :: "+String.valueOf(jsonString)+"]");
Log.w("//===========//","================================================");
Log.i("---","---");
}
catch (Exception e){
e.printStackTrace();
}
// -------------------------------------
// [모델 클래스 생성 실시]
// -------------------------------------
package com.example.javaproject;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
import java.util.HashMap;
public class M_Person {
/**
* // --------------------------------------------------------------------------------------
* TODO [클래스 설명]
* // --------------------------------------------------------------------------------------
* 1. GSON 모델 클래스
* // --------------------------------------------------------------------------------------
* 2. @SerializedName : JSON 객체 생성 시 표시될 key name
* // --------------------------------------------------------------------------------------
* 3. @Expose : 데이터가 null 일 경우 json 생성 시 제외 설정
* // --------------------------------------------------------------------------------------
* 4. build.gradle 설정 :
*
* implementation 'com.google.code.gson:gson:2.8.6'
* // --------------------------------------------------------------------------------------
* */
/**
* // --------------------------------------------------------------------------------------
* // TODO [빠른 로직 찾기 : 주석 로직 찾기]
* // --------------------------------------------------------------------------------------
* // [SEARCH FAST] :
* // --------------------------------------------------------------------------------------
* */
// -----------------------------------------------------------------------------------------
// TODO [전역 변수 선언]
// -----------------------------------------------------------------------------------------
private static final String ACTIVITY_NAME = "M_Person";
// -----------------------------------------------------------------------------------------
// TODO [클래스 생성자 초기화]
// -----------------------------------------------------------------------------------------
public M_Person(String name, int age, String sex){
this.name = name;
this.age = age;
this.sex = sex;
}
// -----------------------------------------------------------------------------------------
// TODO [JSON KEY DATA]
// -----------------------------------------------------------------------------------------
// [JSON KEY]
@SerializedName("key_name") @Expose public String name;
// -------------------------------------------
// [JSON KEY]
@SerializedName("key_age") @Expose public int age;
// -------------------------------------------
// [JSON KEY]
@SerializedName("key_sex") @Expose public String sex;
// -------------------------------------------
} // TODO [클래스 종료]
[결과 출력]
W///===========//: ================================================
I/: [A_Intro >> onCreate() :: 로그 출력]
I/: [jsonString :: {"key_name":"투케이", "key_age":29}]
W///===========//: ================================================
반응형
'Android' 카테고리의 다른 글
Comments