我是 XPath 的新手,我遇到以下问题:
我有一个从Web服务接收数据的Java方法,这些数据在XML文档中,因此我必须使用XPath在此XML结果文档中获取特定值。
特别是我知道这是我的Web服务(Web服务响应)提供的整个XML输出:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<getConfigSettingsResponse xmlns="http://tempuri.org/">
<getConfigSettingsResult><![CDATA[<root>
<status>
<id>0</id>
<message></message>
</status>
<drivers>
<drive id="tokenId 11">
<shared-secret>Shared 11</shared-secret>
<encoding>false</encoding>
<compression />
</drive>
<drive id="tokenId 2 ">
<shared-secret>Shared 2 </shared-secret>
<encoding>false</encoding>
<compression>false</compression>
</drive>
</drivers>
</root>]]></getConfigSettingsResult>
</getConfigSettingsResponse>
</s:Body>
</s:Envelope>
现在在Java类中,我执行以下操作:
XPath xPath; // An utility class for performing XPath calls on JDOM nodes
Element objectElement; // An XML element
//xPath = XPath.newInstance("s:Envelope/s:Body/getVersionResponse/getVersionResult");
try {
// XPath selection:
xPath = XPath.newInstance("s:Envelope/s:Body");
xPath.addNamespace("s", "http://schemas.xmlsoap.org/soap/envelope/");
objectElement = (Element) xPath.selectSingleNode(documentXML);
if (objectElement != null) {
result = objectElement.getValue();
System.out.println("RESULT:");
System.out.println(result);
}
} catch (JDOMException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
打印结果变量内容的结果就是输出:
RESULT:
<root>
<status>
<id>0</id>
<message></message>
</status>
<drivers>
<drive id="tokenId 11">
<shared-secret>Shared 11</shared-secret>
<encoding>false</encoding>
<compression />
</drive>
<drive id="tokenId 2 ">
<shared-secret>Shared 2 </shared-secret>
<encoding>false</encoding>
<compression>false</compression>
</drive>
</drivers>
</root>
现在我的问题是,我只想访问广告 0 标记的内容,所以我希望(在这种情况下)我的结果变量必须包含 0 值。
但我不能,我尝试用以下内容更改以前的XPath选择:
xPath = XPath.newInstance("s:Envelope/s:Body/s:status/s:id");
但是通过这种方式,我获得了 objectElement null
为什么呢?我错过了什么?我如何获取mu结果变量包含 id 标记的内容?
TNX
安德烈
答案 0 :(得分:3)
“CDATA”部分中的“root”节点。整个部分作为文本插入,您无法通过xPath进行搜索。您可以从“objectElement.getValue()”获取文本,将其解析为新XML,然后使用新的xPath获取标记“id”值。您还可以使用正则表达式搜索“objectElement.getValue()”以获取标记“id”值。
答案 1 :(得分:0)
你真的应该在JDOM 2.x中使用新的XPathAPI,并考虑到pasha701的答案,你的代码看起来应该更像:
Namespace soap = Namespace.getNamespace("s", "http://schemas.xmlsoap.org/soap/envelope/");
Namespace tempuri = Namespace.getNamespace("turi", ""http://tempuri.org/");
XPathExpression<Element> xpath = XPathFactory.instance().compile(
"s:Envelope/s:Body/turi:getConfigSettingsResponse/turi:getConfigSettingsResult",
Filters.element(), null, soap, tempuri);
Element result = xpath.evaluateFirst(documentXML);
String resultxml = result.getValue();
Document resultdoc = new SAXBuilder().build(new StringReader(resultxml));
Element id = resultdoc.getRootElement().getChild("status").getChild("id");