Setting Default value to a variable when deserializing using gson

后端 未结 3 1836
南旧
南旧 2020-12-03 20:40

I am trying to convert JSON to Java object. When a certain value of a pair is null, it should be set with some default value.

Here is my POJO:



        
3条回答
  •  时光说笑
    2020-12-03 21:10

    I think that the way to do this is to either write your no-args constructor to fill in default values, or use a custom instance creator. The deserializer should then replace the default values for all attributes in the JSON object being deserialized.

提交回复
热议问题