メンバーと一緒に授業があります-
private Document myDoc;
XPath xpath = XPathFactory.newInstance().newXPath();
関数を使おうとしていevaluate
ます-
Object result = xpath.evaluate(expression, this.myDoc,
XPathConstants.NODESET);
stはいつexpression
ですかstring
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
同じ例外が発生します。前もって感謝します 。