java gson - 是否可以从字符串反序列化对象而不拥有其所有字段

发布于 2024-10-25 08:50:34 字数 90 浏览 3 评论 0原文

假设我向对象添加一个字段,但仍然得到相同的字符串。我可以将其 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

喜你已久 2024-11-01 08:50:35

好吧,取决于反序列化是如何完成的。如果首先使用无参数构造函数创建对象,然后通过 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.)

心舞飞扬 2024-11-01 08:50:35

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

我家小可爱 2024-11-01 08:50:35

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文