gpt4 book ai didi

java - 使用 Gson 将 JSON 反序列化为非静态嵌套类

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:49:58 24 4
gpt4 key购买 nike

根据 this Gson 可以反序列化到内部类。我有下一个 JSON 字符串片段:

...
"coordinates": {
"coordinates": [106.80552006,-6.22016938],
"type": "Point",
}
...

我正在使用下一节课:

public class Tweet {
public Coordinates coordinates = new Coordinates();

public class Coordinates {
public double[] coordinates;
}
}

并尝试解析我的 JSON 字符串:

Tweet tweet = gson.fromJson(string, Tweet.class);
Tweet.Coordinates tweetCoordinates = gson.fromJson(string, Tweet.Coordinates.class);

但是我得到这个错误:

Expected BEGIN_ARRAY but was BEGIN_OBJECT

你能告诉我错误在哪里吗?

最佳答案

当我将 Gson 与嵌套类一起使用时,我总是需要使它们 static 才能工作...在您的链接中他们说这不是必需的,但在 Gson documentation 中明确地说:

"Gson can also deserialize static nested classes. However, Gson can not automatically deserialize the pure inner classes since their no-args constructor also need a reference to the containing Object which is not available at the time of deserialization. You can address this problem by either making the inner class static or by providing a custom InstanceCreator for it."


无论如何,如果实际上可以反序列化为非静态内部类,那么您的问题就是...

首先,您使用类 Tweet 解析 JSON:

Tweet tweet = gson.fromJson(string, Tweet.class);

这应该有效,因为类 Tweet 匹配 JSON 响应。但是,然后您尝试使用 Coordinates 类解析相同的 JSON 响应,这显然与 JSON 响应匹配...而且它根本没有意义解析相同的响应两次!

如果您的第一次解析确实有效,如果您随后想要访问 Coordinates 对象,只需执行以下操作:

Tweet.Coordinates tweetCoordinates = tweet.getCordinates();

如果类 Tweet 的解析也不起作用,请尝试使内部类 static,如果这也不起作用,请发表评论,我将尝试找到另一种解决方案...

关于java - 使用 Gson 将 JSON 反序列化为非静态嵌套类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16574998/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com