Java 中的 xPath 表达式
xPath expression in Java
我有以下 xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<include template="template.xml">
<param name="view" value="exampleValue"/>
<param name="table" value="exampleValue"/>
<param name="title" value="exampleValue"/>
<param name="addTitle" value="exampleValue"/>
<param name="permission" value="exampleValue"/>
<param name="icon" value="exampleValue"/>
</include>
现在我想在我的 Java 项目中检查 xPath 是否有一个 <include>
-node 具有名为 template
的属性,并且子节点是否包含 name
-属性和随附的 value
.
我试过这个:
String expression ="//include[@template]"; //Expression;
NodeList nodeList = (NodeList) xPath.compile(expression).evaluate(xmlDocument, XPathConstants.NODESET);
for (int i = 0; i < nodeList.getLength(); i++)
{
String match = nodeList.item(i).getAttributes().getNamedItem("value").toString();
String match2 = nodeList.item(i).getAttributes().getNamedItem("template").toString();
System.out.println(match);
System.out.println(match2);
}
试试这个 /include[@template]/*[@name][@value]
这将为您提供包含 element/node.
下包含名称和值的节点
我有以下 xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<include template="template.xml">
<param name="view" value="exampleValue"/>
<param name="table" value="exampleValue"/>
<param name="title" value="exampleValue"/>
<param name="addTitle" value="exampleValue"/>
<param name="permission" value="exampleValue"/>
<param name="icon" value="exampleValue"/>
</include>
现在我想在我的 Java 项目中检查 xPath 是否有一个 <include>
-node 具有名为 template
的属性,并且子节点是否包含 name
-属性和随附的 value
.
我试过这个:
String expression ="//include[@template]"; //Expression;
NodeList nodeList = (NodeList) xPath.compile(expression).evaluate(xmlDocument, XPathConstants.NODESET);
for (int i = 0; i < nodeList.getLength(); i++)
{
String match = nodeList.item(i).getAttributes().getNamedItem("value").toString();
String match2 = nodeList.item(i).getAttributes().getNamedItem("template").toString();
System.out.println(match);
System.out.println(match2);
}
试试这个 /include[@template]/*[@name][@value]
这将为您提供包含 element/node.
下包含名称和值的节点