首页 > 解决方案 > Ignore some nested items in Gson Deserializing

问题描述

I want to deserialize NASA asteroids that I get from an API call in json format like this: enter image description here

 data class Asteroid(
    val id: Int,
    val name: String = "",
    val meanDiameter: Int,
)

 class Deserializer : ResponseDeserializable<Asteroid> {
            override fun deserialize(content: String) = Gson().fromJson(content, Asteroid::class.java)
 }

How can I ignore the first top items links and page and only deserialize near_earth_objects in my Asteroid data class? And how can I access the nested items inside of near_earth_objects?

标签: jsonkotlingsondeserializationfuel

解决方案


你可以忽略它们。

data class NearEarthObjects(@SerializedName("near_earth_objects") val nearEarthObjects: List<Objects>)
data class Objects(val id: String, val name: String)

如果你然后获取 json 你可以这样做:

Gson().fromJson(yourJson, NearEarthObjects::class.java)

您将获得所有对象名称和 ID 的列表。


推荐阅读