Xpath

getRootElement().selectNodes(
					"//Root[ID= '" + id
							+ "']");


取得如下的Root节点
<Root>
    <ID>id</ID>
</Root>


第二个

getRootElement().selectNodes("//Root[@seq >= '" 
					+ (ndex+ "' and @seq <= '" + 2 * index + "']"));


取得Root节点,其属性SEQ大于index小于index * 2

你可能感兴趣的:(java)