본문으로 바로가기

Gson

category JAR 2018. 12. 19. 10:05
반응형

gson-2.8.5.jar



Gson gson = new Gson();

Beans b = gson.fromJson(String, Beans.class);


이후 값이면 해당 값으로 접근하고 배열이면 리스트로 접근

{

"test" : [

...

    ]

}


List<Test> test = b.getTest();

===================================================


{

"data" : ""

"test" : [

...

    ]

}


Data data = b.getData();

List<Test> test = data.getTest();

===================================================


Beans는 안쪽부터 거꾸로 정리

{

"test" : [

...

    ]

}


public class Beans{

@SerializedName("test")

private List<Test> test;

getters, setters

tostring


public class Test{

@SerializedName("변수")

변수정의

getters, setters

tostring

}

}

===================================================


{

"data" : ""

"test" : [

...

    ]

}


public class Beans{

@SerializedName("data")

priavte Data data;

getters, setters

tostring


public class Data{

@SerializedName("test")

private List<Test> test;

getters, setters

tostring


public class Test{

@SerializedName("변수")

변수정의

getters, setters

tostring

}

}

}

===================================================

반응형

'JAR' 카테고리의 다른 글

주민번호  (0) 2018.12.11