我有一个看起来像这样的xml:

<Root>
   <tag1>4</tag1>
   <tag2>aa</tag2>
   <tag3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <anyType xsi:type="xsd:string">bla bla bla</anyType>
      <anyType xsi:type="xsd:string">3</anyType>
   </tag3>
</Root>


xjc生成的对象是:

public class Root {
  @XmlElement(name="tag1")
  protected short tag1;

  @XmlElement(name="tag2")
  protected String tag2;

  @XmlElement(name="tag3")
  protected Object tag3;
}


当我解组xml时,我在tag3中得到了某种xml元素。
我需要一些通用的东西来将tag3中的值放入列表中。

有任何想法吗?

谢谢。

最佳答案

创建类AnyType。并将tag3声明为AnyType的数组

 @XmlElement(name="tag3")
 protected AnyType[] tag3;

09-26 15:29