Java-为什么Google Gson.toJson会丢失数据

我有五节课:

Comment,Paper,WoundPaper,Document,WoundDoc.

评论是文本的持有人.
纸是空的抽象类.
WoundPaper扩展Paper并存储String和Comments的ArrayList.
文档是抽象类,并存储&lt ;?的ArrayList.扩展Paper>.
WoundDoc扩展文档.

您可以在下面看到这些类:

评论类别:

public class Comment {

    private final String text;

    public static class Builder {
        private final String text;

        public Builder(String text) {
            this.text = text;
        }

        public Comment build(){
            return new Comment(this);
        }

    }

    private Comment(Builder builder) {
        this.text = builder.text;
    }

    public String getText() {
        return text;
    }

}

论文班:

public abstract class Paper {

    protected Paper(ArrayList<Comment> commentList) {
    }

}

WoundPaper类:

public class WoundPaper extends Paper {

    private final String imageUri;
    private final ArrayList<Comment> commentList;

    public static class Builder {
        private final String imageUri;
        private final ArrayList<Comment> commentList;

        public Builder(String imageUri, ArrayList<Comment> commentList) {
            this.imageUri = imageUri;
            this.commentList = commentList;
        }

        public WoundPaper build() {
            return new WoundPaper(this);
        }

    }

    private WoundPaper(Builder builder) {
        super(builder.commentList);
        this.imageUri = builder.imageUri;
        this.commentList = builder.commentList;
    }

}

文件类别:

public abstract class Document {
    private final ArrayList<? extends Paper> paperList;


    protected Document(ArrayList<? extends Paper> paperList) {
        this.paperList = paperList;
    }

}

WoundDoc类:

public class WoundDoc extends Document {

    public static class Builder {
        private final ArrayList<WoundPaper> paperList;

        public Builder(ArrayList<WoundPaper> paperList) {
            this.paperList = paperList;
        }

        public WoundDoc build() {
            return new WoundDoc(this);
        }

    }

    private WoundDoc(Builder builder) {
        super(builder.paperList);
    }

}

现在我必须创建一个WoundDoc实例并通过Gson将其转换为JSON字符串,这是执行此操作的示例代码:

        Comment comment = new Comment.Builder("comment").build();
        ArrayList<Comment> commentList = new ArrayList<Comment>();
        commentList.add(comment);
        commentList.add(comment);

        WoundPaper woundPaper = new WoundPaper.Builder("some Uri", commentList).build();
        ArrayList<WoundPaper> woundPaperList = new ArrayList<WoundPaper>();
        woundPaperList.add(woundPaper);
        woundPaperList.add(woundPaper);

        WoundDoc woundDoc = new WoundDoc.Builder(woundPaperList).build();

        System.out.println("woundDoc to JSON >> " + gson.toJson(woundDoc));

但是输出很奇怪:

woundDoc to JSON >> {“paperList”:[{},{}]}

正如我之前显示的那样,WoundDoc存储WoundPaper的列表,每个WoundPaper存储评论的列表.但是为什么输出中没有评论?

解决方法:

当gson序列化WoundDoc时,它只能说明存在一个扩展为Paper的东西的两个对象的List(List<?extended Paper>).具体类型未知.因为Paper没有供gson使用的字段,所以只能说该列表中有两个条目,但是由于它们是Paper类型,没有字段,因此无法解决如何序列化这些对象的方法.

解决此问题的一种方法是将类型从实现传递到抽象类,以便gson在检查它们时可以看到遇到的对象是哪个类的实例,从而确定如何序列化它们.

更新文档以使用类型参数:

public abstract class Document<T extends Paper> {
    private final ArrayList<T> paperList;


    protected Document(ArrayList<T> paperList) {
        this.paperList = paperList;
    }
}

更新WoundDoc以将类型传递给Document:

public class WoundDoc extends Document<WoundPaper> {

如果您无法进行上述更改,另一种解决方法是为WoundDoc编写自定义序列化程序

我个人会使用第一个解决方案和通过类型,因为我很懒,编写自定义序列化器会更费力

编辑:次要喊到jackson,如果您尝试序列化某些内容,它将抛出异常,但是它无法解决该问题.

上一篇:android-使用GSON库解析JSON的问题


下一篇:使用GSON JSON包围Android