提问者:小点点

Gson-具有空值的JsonObject


我对Gson如何解析字符串到JSON有点困惑。一开始,我像这样初始化gson

val gson = Gson().newBuilder().serializeNulls().disableHtmlEscaping().create()

接下来,我将我的地图转换为字符串:

val pushJson = gson.toJson(data) // data is of type Map<String,Any>

这给出了以下输出:

{
    "name": null,
    "uuid": "5a8e8202-6654-44d9-a452-310773da78c1",
    "paymentCurrency": "EU"
}

此时,JSON字符串具有空值。但在以下步骤中:

val jsonObject = JsonParser.parseString(pushJson).asJsonObject

它没有!

{
    "uuid": "5a8e8202-6654-44d9-a452-310773da78c1",
    "paymentCurrency": "EU"
}

如何在JsonObject中获取所有空值,如JSON字符串:

{
  "string-key": null,
  "other-key": null
}

@编辑

添加了一些json来帮助理解这个问题。


共1个答案

匿名用户

在与OP讨论后,JSON对象被Retrofit序列化以允许API调用,使用以下代码:

return Retrofit.Builder()
    .baseUrl("api/url")
    .client(httpClient.build())
    .addConverterFactory(GsonConverterFactory.create())
    .build()
    .create(ApiInterface::class.java)

这里的问题在于GsonConverterFactory:由于没有将Gson对象传递给create方法,因此会在底层创建一个新的默认Gson实例,并且默认情况下它不会序列化null值。

通过将适当的实例传递给工厂可以轻松解决该问题:

val gson = GsonBuilder().serializeNulls().create() // plus any other custom configuration
....

fun createRetrofit() = Retrofit.Builder()
    .baseUrl("api/url")
    .client(httpClient.build())
    .addConverterFactory(GsonConverterFactory.create(gson)) // use the configured Gson instance
    .build()
    .create(ApiInterface::class.java)