繁体   English   中英

使用Gson使用自定义序列化序列化枚举映射

[英]Serializing a map of enums with Gson with custom serialization

按照使用GSON解析JSON时使用枚举的建议,我尝试使用Gson序列化其键是enum的映射。

考虑以下课程:

public class Main {

    public enum Enum { @SerializedName("bar") foo }

    private static Gson gson = new Gson();

    private static void printSerialized(Object o) {
        System.out.println(gson.toJson(o));
    }

    public static void main(String[] args) {
        printSerialized(Enum.foo); // prints "bar"

        List<Enum> list = Arrays.asList(Enum.foo);
        printSerialized(list);    // prints ["bar"]

        Map<Enum, Boolean> map = new HashMap<>();
        map.put(Enum.foo, true);
        printSerialized(map);    // prints {"foo":true}
    }
}

两个问题:

  1. 为什么printSerialized(map) print {"foo":true}而不是{"bar":true}
  2. 如何打印{"bar":true}

Gson为Map键使用专用的序列化器。 默认情况下,这使用将要用作键的对象的toString() 对于enum类型,它基本上是enum常量的名称。 默认情况下,对于enum类型, @SerializedName仅在将enum序列化为JSON值(除了对名称)时使用。

使用GsonBuilder#enableComplexMapKeySerialization来构建您的Gson实例。

private static Gson gson = new GsonBuilder().enableComplexMapKeySerialization().create();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM