dom4j selectNodes

dom4j selectNodes
node.selectNodes("//xml");
node.selectNodes("/xml");
node.selectNodes("xml");
这三个写法有什么区别

问题补充:

不是很明白
就举个例子吧
<root>
<xml>1</xml>
<node>
<xml>2</xml>
<AAA>
<xml>3</xml>
</AAA>
</node>
</root>
从node搜索的话,这三种方法分别能搜到1、2、3中的哪几个?




nodename  选取此节点的所有子节点
/ 从根节点选取
// 从匹配选择的当前节点选择文档中的节点,而不考虑它们的位置

参考资料:http://www.w3school.com.cn/xpath/xpath_syntax.asp

你可能感兴趣的:(dom4j selectNodes)