반응형
자주 사용하는 Gson에 대한 정리 ^^
1.json을 hashmap으로 변환
String jsonString = "{\"EVENT_TYPE\":\"결과\", \"DV_CD\":\"아이디\"}";
// Create a Gson instance
Gson gson = new Gson();
// Define the type of the map (String key, String value)
Type type = new TypeToken<HashMap<String, String>>() {}.getType();
// Deserialize the JSON string to a HashMap
HashMap<String, Object> properties = gson.fromJson(jsonString, type);
반응형
'Android Coding' 카테고리의 다른 글
AlertDialog에서 제목에 대한 글 수정 (0) | 2019.05.08 |
---|---|
JNI GetMethodID 관련 타입 정리 (0) | 2019.02.18 |
RecyclerView에서 StaggeredGridLayoutManager 적용 후 SwipeRefreshLayout 의 Refresh 할 때 (0) | 2019.02.13 |
Thread를 이용한 RecyclerView UI 변경 처리 (0) | 2018.12.13 |
선택 시, Ripple 효과 (0) | 2018.10.19 |