<parent>
<child>
<child2>Some Text</child2>
</child>
</parent>
鉴于上述xml。如何将child2元素作为父元素的直接成员?
@Root
class Parent {
@Element
String child2;
}
答案 0 :(得分:3)
您需要使用Path
注释为字段指定XPath表达式。
@Root
class Parent {
@Element
@Path("child")
String child2;
}