2
<parent>
  <child>
    <child2>Some Text</child2>
  </child>
</parent>

鉴于上述 xml。如何使 child2 元素成为父级的直接成员?

@Root
class Parent {
  @Element
  String child2;
}
4

1 回答 1

3

Path您需要使用注释为字段指定 XPath 表达式。

@Root
class Parent {

    @Element
    @Path("child")
    String child2;

}

另请参见使用 XPath 表达式进行映射

于 2013-11-04T05:18:08.803 回答