[Gson八]GsonBuilder序列化和反序列化选项enableComplexMapKeySerialization

8 篇文章 0 订阅

enableComplexMapKeySerialization配置项的含义

 Gson在序列化Map时,默认情况下,是调用Key的toString方法得到它的JSON字符串的Key,对于简单类型和字符串类型,这没有问题,但是对于复杂数据对象,如果对象没有覆写toString方法,那么默认的toString方法将得到这个对象的Hash地址。

 

GsonBuilder用于为创建Gson对象设置配置选项,这些选项可以覆盖通过Gson gson = new Gson()创建的Gson对象,例如下面的例子代码:

 

不启用enableComplexMapKeySerialization并且不启动类型适配器(PointTypeAdapter)

 

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;

import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;

class Point {
    private  int x;
    private int y;

    public int getX() {
        return x;
    }

    public void setX(int x) {
        this.x = x;
    }

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }
}



public class Test {

    public static void main(String[]args) {

        Map<Point, String> map = new HashMap<Point, String>();
        Point p1 = new Point();
        p1.setX(10);
        p1.setY(10);
        map.put(p1, "Ten");

        Point p2 = new Point();
        p2.setX(20);
        p2.setY(20);
        map.put(p2, "Twenty");

        Gson gson  = new GsonBuilder().create();
        String str = gson.toJson(map);
        System.out.println(str);//{"test1.Point@5ba5ba75":"Ten","test1.Point@5d748654":"Twenty"}

        Type type = new TypeToken<Map<Point,String>>(){}.getType();

        map  = gson.fromJson(str, type);//java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING
    }
}

 代码输出 {"Point@6f92c766":"Twenty","Point@6406c7e":"Ten"},可见Key转换成字符串时,使用的Key.toString()方法(这里的Key是Point类型),这样转换结果基本是无法接受的,因为序列化出来的JSON串无法反序列化原来的Map集合。在上面的反序列化时,抛出异常因为Gson因为Point@6f92c766只是一个简单的字符串,无法转型为Point。
 

启用enableComplexMapKeySerialization配置项,但是不启用类型适配器

如果仅仅启用enableComplexMapKeySerialization配置项,但是不为Point类自定义类型适配器,那么这个Map将被序列化为JSON数组,数组的每个元素也是一个数组,这个数组的长度为2,第一个值为Key转换得到的JSON对象字符串,第二个值是Value对应的JSON字符串。如下代码所示:
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.reflect.TypeToken;

import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;

class Point {
    private int x;
    private int y;

    public int getX() {
        return x;
    }

    public void setX(int x) {
        this.x = x;
    }

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }
}
public class Test {
    public static void main(String[] args) {
        Map<Point, String> map = new HashMap<Point, String>();
        Point p1 = new Point();
        p1.setX(10);
        p1.setY(10);
        map.put(p1, "Ten");

        Point p2 = new Point();
        p2.setX(20);
        p2.setY(20);
        map.put(p2, "Twenty");

        GsonBuilder gsonBuilder = new GsonBuilder();
        gsonBuilder.enableComplexMapKeySerialization();
        Gson gson = gsonBuilder.create();
        String str = gson.toJson(map);
        System.out.println(str); //[[{"x":10,"y":10},"Ten"],[{"x":20,"y":20},"Twenty"]]
        Type type = new TypeToken<Map<Point, String>>(){}.getType();
        map = gson.fromJson(str, type); //转换成功
    }

}
 

 

启用enableComplexMapKeySerialization配置项,并且启用类型适配器

 

 

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.TypeAdapter;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;

import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;

class Point {
    private int x;
    private int y;

    public int getX() {
        return x;
    }

    public void setX(int x) {
        this.x = x;
    }

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }
}

class PointTypeAdapter extends TypeAdapter<Point> {

    @Override
    public void write(JsonWriter out, Point value) throws IOException {
        if (value == null) {
            out.nullValue();
        } else {
            out.value("(" + value.getX() + "," + value.getY() + ")");
        }
    }

    @Override
    public Point read(JsonReader in) throws IOException {
        if (in.peek() == JsonToken.NULL) {
            return null;
        } else {
            String str = in.nextString(); 
            str = str.substring(1, str.length() - 1); //根据writer的格式,解析字符串
            String[] pair = str.split(",");
            Point p =  new Point();
            p.setX(Integer.parseInt(pair[0]));
            p.setY(Integer.parseInt(pair[1]));
            return p;
        }
    }
}

public class Test {
    public static void main(String[] args) {
        Map<Point, String> map = new HashMap<Point, String>();
        Point p1 = new Point();
        p1.setX(10);
        p1.setY(10);
        map.put(p1, "Ten");

        Point p2 = new Point();
        p2.setX(20);
        p2.setY(20);
        map.put(p2, "Twenty");

        Gson gson = new GsonBuilder().enableComplexMapKeySerialization().registerTypeAdapter(Point.class, new PointTypeAdapter()).create();
        String str = gson.toJson(map);
        System.out.println(str); //{"(10,10)":"Ten","(20,20)":"Twenty"}
        Type type = new TypeToken<Map<Point, String>>() {
        }.getType();
        map = gson.fromJson(str, type); //转换成功
    }

}

 

 

启用类型适配器,但不启用enableComplexMapKeySerialization

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.TypeAdapter;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;

import java.io.IOException;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;

class Point {
    private int x;
    private int y;

    public int getX() {
        return x;
    }

    public void setX(int x) {
        this.x = x;
    }

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }
}

class PointTypeAdapter extends TypeAdapter<Point> {

    @Override
    public void write(JsonWriter out, Point value) throws IOException {
        if (value == null) {
            out.nullValue();
        } else {
            out.value("(" + value.getX() + "," + value.getY() + ")");
        }
    }

    @Override
    public Point read(JsonReader in) throws IOException {
        if (in.peek() == JsonToken.NULL) {
            return null;
        } else {
            String str = in.nextString(); 
            str = str.substring(1, str.length() - 1); //根据writer的格式,解析字符串
            String[] pair = str.split(",");
            Point p =  new Point();
            p.setX(Integer.parseInt(pair[0]));
            p.setY(Integer.parseInt(pair[1]));
            return p;
        }
    }
}

public class Test {
    public static void main(String[] args) {
        Map<Point, String> map = new HashMap<Point, String>();
        Point p1 = new Point();
        p1.setX(10);
        p1.setY(10);
        map.put(p1, "Ten");

        Point p2 = new Point();
        p2.setX(20);
        p2.setY(20);
        map.put(p2, "Twenty");

        Gson gson = new GsonBuilder().registerTypeAdapter(Point.class, new PointTypeAdapter()).create();
        String str = gson.toJson(map);
        System.out.println(str); //{"Point@e0cc23":"Twenty","Point@76ab2f":"Ten"}
        Type type = new TypeToken<Map<Point, String>>() {
        }.getType();
        map = gson.fromJson(str, type); //转换成功
    }

}

 

 上面的代码如果仅仅注册PointTypeAdapter而不调用enableComplexMapKeySerialization,序列化的结果仍然是{"Point@e0cc23":"Twenty","Point@76ab2f":"Ten"}

 

总结

 1.如果在序列化Map类型的对象时,如果Key是复杂数据类型(不是基本数据类型或者String,即自定义POJO),此时就要使用enableComplexMapKeySerialization配置选项,否则Gson默认是以Key.toString()作为JSON字符串对应的Key

 2.在实际中,麻烦的是根据JSON字符串的结构定义对应的POJO,如果JSON串中key是JSON对象格式,可以考虑使用使用Map,并且把Key定义为复杂类型,然后同时启用enableComplexMapKeySerialization选项和注册TypeAdapter

 

 

 

 

 

 

 

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值