将XPath表达式与Simple XML一起使用

时间:2013-11-04 04:45:23

标签: java xml simple-framework

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

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

@Root
class Parent {
  @Element
  String child2;
}

1 个答案:

答案 0 :(得分:3)

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

@Root
class Parent {

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

}

另见Mapping with XPath expressions