如何在编组/解组java对象时忽略fieldname

时间:2015-11-22 21:54:31

标签: java marshalling unmarshalling xstream ignore

我遇到了以下问题,我不知道如何解决这个问题。

我有一个基于通用界面的不同类型点的列表。 我正在使用Java XStream来编组和解组这些类。

public static void main(String[] args) {

    List<IPoint> listOfPoint = new ArrayList<IPoint>();
    listOfPoint.add(new PointTypeA(0.1));
    listOfPoint.add(new PointTypeB(0.2));
    listOfPoint.add(new PointTypeA(0.3));
    PointSet ps = new PointSet(1, listOfPoint);

    XStream xstream = new XStream(new StaxDriver());
    xstream.processAnnotations(PointTypeA.class);
    xstream.processAnnotations(PointTypeB.class);
    xstream.processAnnotations(PointSet.class);

    String xml = xstream.toXML(ps);
    System.out.println(xml);
}

当我以XML格式打印对象时,我得到以下结果:

<set id="1">
  <typeA>
    <xCoordinate>0.1</xCoordinate>
  </typeA>
  <typeB>
    <xCoordinate>0.2</xCoordinate>
  </typeB>
  <typeA>
    <xCoordinate>0.3</xCoordinate>
  </typeA>
</set>

但不是上面的结果,我希望得到以下输出:

<set id="1">
  <typeA>0.1</typeA>
  <typeB>0.2</typeB>
  <typeA>0.3</typeA>
</set>

我想要的不是像<xCoordinate>这样的标签,但我希望它们的值存储在classname的标签下。 我不想忽略xCoordinate字段的值,但我希望有一个“内联值”。 有可能吗? 我试过转换器没有成功,我不知道如何解决这个问题。

我的课程是:

public interface IPoint {

    int getSomeInformation();
}  

@XStreamAlias("set")
public class PointSet {

    @XStreamAsAttribute
    private int id;

    @XStreamImplicit
    private List<IPoint> points;

    public PointSet(int id, List<IPoint> points) {
        super();
        this.id = id;
        this.points = points;
    }
}

@XStreamAlias("typeA")
public class PointTypeA implements IPoint {

    private double xCoordinate;

    public PointTypeA(double d) {
        super();
        this.xCoordinate = d;
    }
}

@XStreamAlias("typeB")
public class PointTypeB implements IPoint {

    private double xCoordinate;

    public PointTypeB(double d) {
        super();
        this.xCoordinate = d;
    }
}

如果可以,请帮助我。 谢谢。

1 个答案:

答案 0 :(得分:0)

您的积分类的转换器非常简单。

ArrayList

您可以使用

进行注册
public static class CoordConverter implements Converter
{
    public boolean canConvert(Class clazz)
    {
        return PointTypeA.class == clazz;
    }

    public void marshal(Object object, HierarchicalStreamWriter hsw, MarshallingContext mc)
    {
        PointTypeA obj = (PointTypeA) object;
        hsw.setValue(String.valueOf(obj.xCoordinate));
    }

    public Object unmarshal(HierarchicalStreamReader hsr, UnmarshallingContext uc)
    {
        double val = Double.parseDouble(hsr.getValue());
        PointTypeA obj = new PointTypeA(val);
        return obj;
    }
}

当然,此转换器对xstream.registerConverter(new CoordConverter()); 类有效,但您可以轻松地扩展您需要的其他类的代码和/或编写更通用的版本。