개발일지

삽질 - Gson Conver Int to Double 본문

삽질

삽질 - Gson Conver Int to Double

강태종 2021. 9. 30. 13:36

Gson을 사용하여 Number Type을 변경할 때 Int형을 Double로 자동으로 변경하는 경우가 있다. Gson은 Number Type을 기본으로 Double로 변경하기 때문인데 TypeToken을 통해 Type을 지정해주자!

 

Gson().fromJson(json, object : TypeToken<List<Int>>() {}.type)

 

Comments