如何使用XQuery获取XML文件中的子节点数

时间:2013-06-21 04:21:50

标签: java xml xquery

我想使用XQUERY获取或返回xml文件中的项目数(<recROw></recROw>)。在XQuery中有一种简单的方法吗?

以下是我的示例XML数据:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<DailyRecord>
  <recROw>
    <id>1</id>
    <name>John Smith</name>
    <gender>male</gender>
    <status>active</status>
  </recROw>
  <recROw>
    <id>2</id>
    <name>James Bond</name>
    <gender>male</gender>
    <status>active</status>
  </recROw>
<DailyRecord>

任何帮助和想法将不胜感激。提前谢谢!

1 个答案:

答案 0 :(得分:1)

尝试

count(/DailyRecord/recROw)