Executes the specified XPath expression against the XML that this cursor is in. The cursor's position does not change. To navigate to the selections, use {@link #hasNextSelection} and {@link #toNextSelection} (similar to{@link java.util.Iterator}).
The root referred to by the expression should be given as a dot. The following is an example path expression:
cursor.selectPath("./purchase-order/line-item");
Note that this method does not support top-level XPath functions.
@param path The path expression to execute.
@throws XmlRuntimeException If the query expression is invalid.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.