繁体   English   中英

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

[英]Why Google Gson.toJson loses data

我有五个班:

CommentPaperWoundPaper PaperDocumentWoundDoc

Comment是文本的持有者。
Paper是空的抽象类。
WoundPaper扩展Paper并存储String和Comments
Document是抽象类,存储<? extends Paper> <? extends Paper>
WoundDoc扩展了Document

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

评论类:

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存储了comment列表。但是为什么输出中没有comment

当gson去序列化WoundDoc它可以告诉我有一个List的两个类型的对象扩展PaperList<? extends 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编写自定义序列化WoundDoc

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

编辑:轻微喊出杰克逊 ,如果你尝试序列化一些东西会抛出异常,但它无法解决如何做到这一点。

暂无
暂无

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

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