java gson - 是否可以从字符串反序列化对象而不拥有其所有字段
假设我向对象添加一个字段,但仍然得到相同的字符串。我可以将其 de-Json 为一个对象,并将缺少的字段设置为 null 吗? 如果我那里有原始变量怎么办? 10倍
Lets say I am adding a field to the object and I still get the same string . Can I de-Json it into an object with the missing fields set as null?
what if I have primitive variables there ?
10x
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好吧,取决于反序列化是如何完成的。如果首先使用无参数构造函数创建对象,然后通过 setter 或反射设置字段,我认为这应该可行。在这种情况下,对其他对象的每个引用都将为 null,而基本类型则获得其默认值(对于数字 0、布尔值 false 等)
Well, depends on how the deserialization is done. If the object is first created with a no-arg constructor and then the fields are set via setters or reflection, I'd say this should work. In that case, every reference to other objects would be null whereas primitive types get their default values (for numbers 0, for boolean false, etc.)
是
Gson - 对象的更精细点
反序列化时,JSON 中缺少条目会导致将对象中的相应字段设置为 null
Yes
Gson - Finer Points with Objects
While deserialization, a missing entry in JSON results in setting the corresponding field in the object to null
您可以使用 XStream 序列化(反)序列化为 JSON,这就是它们处理新字段的方式: http://x-stream.github.io/faq.html#Serialization_newer_class_versions
所以简短的答案是:引用将是空引用,基元将保留它们在构造函数中获得的值
You can use XStream to (de)serialize to JSON, and this is how they deal with new fields: http://x-stream.github.io/faq.html#Serialization_newer_class_versions
So the short answer is: references will be null references, primitives will keep the values they got in constructor