如何使用 gson 调用默认反序列化

2022-09-01 10:52:55

我得到一个具有“字段”字段的json。
如果“字段”具有数据,则有一个 OBJECT 具有许多(约 20 个)其他字段,这些字段也是对象。我可以毫无问题地反序列化它们。
但是,如果“字段”没有数据,它是一个空的ARRAY(我知道这很疯狂,但这是来自服务器的响应,我无法更改它)。像这样:

空时:

"extras":[

]

有一些数据:

"extras": {
    "22":{ "name":"some name" },
    "59":{ "name":"some other name" },
    and so on...
}

所以,如果没有数据(空数组),我显然会得到异常

Caused by: com.google.gson.JsonSyntaxException: java.lang.IllegalStateException:
Expected BEGIN_OBJECT but was BEGIN_ARRAY at line 1 column 4319

我尝试使用自定义JavaDeserializer:

public class ExtrasAdapter implements JsonDeserializer<Extras> {
    @Override
    public Extras deserialize(JsonElement json, Type typeOf,
        JsonDeserializationContext context) throws JsonParseException {
        try {
            JsonObject jsonObject = json.getAsJsonObject();
            // deserialize normally

            // the following does not work, as it makes recursive calls
            // to the same function
            //return context.deserialize(jsonObject,
            //                       new TypeToken<Object>(){}.getType());
        } catch (IllegalStateException e) {
            return null;
        }
    }
}

我通过以下方式阅读json

Gson gsonDecoder = new GsonBuilder().registerTypeAdapter(Extras.class, new ExtrasAdapter();
// httpResponse contains json with extras filed. 
Reader reader = new InputStreamReader(httpResponse.getEntity().getContent());
Extras response = gsonDecoder.fromJson(reader, Extras.class);

我不想手动反序列化所有20个字段(我知道这是一个选项),我只想调用 context.defaultDeserialize(),或类似的东西。
再说一遍:我在反序列化普通json,创建自定义对象,注册自定义TypeAdapters,自定义JavaDeserializers方面没有任何问题。这一切都已经工作了。我只需要一些处理数据的解决方案,可以既是ARRAY又是OBJECT。
感谢您的任何帮助。

======================


乔伊的答案很完美。这就是我一直在寻找的东西。我会在这里发布我的代码。

public class SafeTypeAdapterFactory implements TypeAdapterFactory {
    public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
        final TypeAdapter<T> delegate = gson.getDelegateAdapter(this, type);
        return new TypeAdapter<T>() {
            public void write(JsonWriter out, T value) throws IOException {
                try {
                    delegate.write(out, value);
                } catch (IOException e) {
                    delegate.write(out, null);
                }
            }
            public T read(JsonReader in) throws IOException {
                try {
                    return delegate.read(in);
                } catch (IOException e) {
                    Log.w("Adapter Factory", "IOException. Value skipped");
                    in.skipValue();
                    return null;
                } catch (IllegalStateException e) {
                    Log.w("Adapter Factory", "IllegalStateException. Value skipped");
                    in.skipValue();
                    return null;
                } catch (JsonSyntaxException e) {
                    Log.w("Adapter Factory", "JsonSyntaxException. Value skipped");
                    in.skipValue();
                    return null;
                }
            }
        };
    }
}

答案 1

尝试使用 GSON >= 2.2.1 并查找 TypeAdapterFactory 类。

这将使您能够在反序列化对象之前检查它并应用自定义代码,同时避免递归。

下面是您可以使用的 getDelegateAdapter 的示例。


答案 2
public class ExtrasAdapter implements JsonDeserializer<Extras> {
@Override
public Extras deserialize(JsonElement json, Type typeOf, 
              JsonDeserializationContext context) throws JsonParseException {
    try {
        JsonObject jsonObject = json.getAsJsonObject();
        return new Gson().fromJson(jsonObject , Extras.class); // default deserialization

    } catch (IllegalStateException e) {
        return null;
    }
}