我有成員類 -Xpath的評價計數 「[]」
private Document myDoc;
XPath xpath = XPathFactory.newInstance().newXPath();
我嘗試使用evaluate
功能 -
Object result = xpath.evaluate(expression, this.myDoc,
XPathConstants.NODESET);
時expression
是string
ST
expression = "inventory/book[" +
"count(following-sibling::book/price/text()=14.95)=0 ]" ;
和我得到以下例外 -
java.lang.RuntimeException: Can not convert #BOOLEAN to a NodeList!
即使當我將XPathConstants.NODESET
更改爲XPathConstants.NUMBER
我也會得到相同的異常。提前致謝 。