Kotlin convert json string to list of object using Gson

后端 未结 2 1153
一整个雨季
一整个雨季 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:23

    You could try doing this instead:

    val objectList = gson.fromJson(json, Array::class.java).asList()
    

    EDIT [14th January 2020]: You should NOT be using GSON anymore. Jake Wharton, one of the projects maintainers, suggests using Moshi, Jackson or kotlinx.serialization.

提交回复
热议问题