Kotlin convert json string to list of object using Gson

后端 未结 2 1157
一整个雨季
一整个雨季 2021-02-20 17:15

I have a problem with Kotlin to write code for conversion from JSON String to List of objects.

Normally in Java, it is like this:

  Gson gson = new Gson(         


        
2条回答
  •  情书的邮戳
    2021-02-20 17:24

    Try this, it uses object instead of Type..

    measurements : List = gson.fromJson(text, object : TypeToken>() {}.type) 
    

提交回复
热议问题