Gson自定義轉換器轉換成不同的子類

public static void main(String[] args) {
        String personStr1 = "{\"id\":\"123456\",\"product_category\":\"101\",\"name\":\"xiaofeifei\",\"age\":\"25\",\"ranking\":\"0\"}";
        String personStr2 = "{\"id\":\"123456\",\"product_category\":\"201\",\"name\":\"xiaofeifei\",\"age\":\"25\",\"ranking\":\"1\"}";
        Gson gson = new GsonBuilder().registerTypeAdapter(RANKING.class, new JsonDeserializer<RANKING>() {
                    @Override
                    public RANKING deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
                        int ranking = json.getAsJsonPrimitive().getAsInt();
                        return RANKING.values()[ranking];
                    }
                }).registerTypeAdapter(BasePerson.class, new JsonDeserializer<BasePerson>() {
            @Override
            public BasePerson deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
                String type = json.getAsJsonObject().get("product_category").getAsString();
                return context.deserialize(json, PersonType.getByProductCategory(type).getType());
            }
        }).create();
        BasePerson person1 = gson.fromJson(personStr1,BasePerson.class);
        BasePerson person2 = gson.fromJson(personStr2,BasePerson.class);
    }
class BasePerson{
    private Long id;
    private String product_category;
    private RANKING ranking;

    public RANKING getRanking() {
        return ranking;
    }

    public void setRanking(RANKING ranking) {
        this.ranking = ranking;
    }

    public String getProduct_category() {
        return product_category;
    }

    public void setProduct_category(String product_category) {
        this.product_category = product_category;
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }
}

class PersonWithName extends BasePerson {
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

class PersonWithAge extends BasePerson{
    private Integer age;

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}

enum PersonType {
    WITHNAME("名稱", PersonWithName.class, "101"),
    WITHAGE("年齡", PersonWithAge.class, "201");

    private String displayName;
    private Class<? extends BasePerson> type;
    private String product_category;

    public String getDisplayName() {
        return displayName;
    }

    public void setDisplayName(String displayName) {
        this.displayName = displayName;
    }

    public Class<? extends BasePerson> getType() {
        return type;
    }

    public void setType(Class<? extends BasePerson> type) {
        this.type = type;
    }

    public String getProduct_category() {
        return product_category;
    }

    public void setProduct_category(String product_category) {
        this.product_category = product_category;
    }

    private PersonType(String displayName, Class<? extends BasePerson> type , String product_category) {
        this.displayName = displayName;
        this.type = type;
        this.product_category = product_category;
    }
    public static PersonType getByProductCategory(String category){
        for(PersonType t : values()){
            if(t.product_category.equals(category)){
                return t;
            }
        }
        return null;
    }
}

enum RANKING {
    TOP, BOTTOM;
}




發佈了27 篇原創文章 · 獲贊 2 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章