Tagged Questions
The xpath-api tag has no wiki summary.
1
vote
5answers
1k views
Saxon XPath API returns TinyElementImpl instead of org.w3c.dom.Node
I have the following code:
// xpath evaluates to net.sf.saxon.xpath.XPathEvaluator
XPath xpath = XPathFactory.newInstance().newXPath();
XPathExpression expression = xpath.compile("/foo/bar");
...
1
vote
1answer
510 views
String javax.xml.xpath.XPathExpression.evaluate(Object item) guarantees it never returns null in all implementations?
From the JavaDoc: returns: The String that is the result of evaluating the expression and converting the result to a String.
/**
* ...
* ...
* @return The <code>String</code> that is ...
1
vote
5answers
2k views
Which XPathAPI should I use in Java 1.5?
I have been using com.sun.org.apache.xpath.internal.XPathAPI for some time and it seems to work ok. Recently I tried to use the TPTP profiler in Eclipse but it could not find the XPathAPI class.
I ...
0
votes
0answers
58 views
XPathAPI Jar for Android
Am using vzaar Android API to upload videos. The vzaar contains XPathAPI for that I included
jaxb-xalan-1.5 with that it working fine android 2.2 and above.
But When I about to install in 2.1 or ...