자주 사용하는 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() {}.getType(); // Deserialize the JSON string to a HashMap HashMap properties = gson.fromJson(jsonString, type);