我想使用SimpleXML将不同系列的XML序列化数据反序列化为一个类(而不是同时)。

所有数据集的根类均为<body/>,但子类不同。有些包含<prediction>的一个元素,其他包含<prediction>的多个元素。与<route>相同。这是我当前使用的代码,但它给我一个PersistenceException类型的错误(“重复注释”)。

解决这个问题的最简单方法是什么?任何帮助,将不胜感激。

@Root(name = "body", strict = false)
class NextBusAPIResult {
    @Attribute(name = "copyright")
    public String Copyright;

    @Element(name = "predictions", required = false, type = Predictions.class)
    public Predictions Predictions;

    @ElementList(name = "predictions", required = false, inline = true)
    public List<Predictions> PredictionsForMultiStops;

    @Element(name = "route", required = false, type = RouteInfo.class)
    public RouteInfo RouteInfo;

    @ElementList(name = "route", required = false, inline = true)
    public List<RouteSchedule> RouteSchedules;
}

最佳答案

解决此问题的最简单方法是始终使用多个元素。只需删除与单个元素相关的代码即可。

10-07 16:22