模块  java.xml
软件包  javax.xml.xpath

Interface XPath


  • public interface XPath
    XPath提供对XPath评估环境和表达式的访问。 XPath评估受下表中描述的因素影响。 Evaluation of XPath Expressions Factor Behavior context The type of the context is implementation-dependent. If the value is null, the operation must have no dependency on the context, otherwise an XPathExpressionException will be thrown. For the purposes of evaluating XPath expressions, a DocumentFragment is treated like a Document node. variables If the expression contains a variable reference, its value will be found through the XPathVariableResolver set with setXPathVariableResolver(XPathVariableResolver resolver). An XPathExpressionException is raised if the variable resolver is undefined or the resolver returns null for the variable. The value of a variable must be immutable through the course of any single evaluation. functions If the expression contains a function reference, the function will be found through the XPathFunctionResolver set with setXPathFunctionResolver(XPathFunctionResolver resolver). An XPathExpressionException is raised if the function resolver is undefined or the function resolver returns null for the function. QNames QNames in the expression are resolved against the XPath namespace context set with setNamespaceContext(NamespaceContext nsContext). result This result of evaluating an expression is converted to an instance of the desired return type. Valid return types are defined in XPathConstants. Conversion to the return type follows XPath conversion rules.

    XPath对象不是线程安全的,不可重入。 换句话说,应用程序有责任确保在任何给定时间不从多个线程使用一个XPath对象,并且在调用evaluate方法时,应用程序可能不会递归调用evaluate方法。

    从以下版本开始:
    1.5
    另请参见:
    XML Path Language (XPath) Version 1.0
    • 方法详细信息

      • setXPathVariableResolver

        void setXPathVariableResolver​(XPathVariableResolver resolver)
        建立一个变量解析器。

        一个NullPointerException如果抛出resolvernull

        参数
        resolver - 可变解析器。
        异常
        NullPointerException - 如果 resolvernull
      • getXPathVariableResolver

        XPathVariableResolver getXPathVariableResolver()
        返回当前变量解析器。

        在没有变量解析器生效的情况下返回null

        结果
        当前变量解析器。
      • setXPathFunctionResolver

        void setXPathFunctionResolver​(XPathFunctionResolver resolver)
        建立功能解析器。

        一个NullPointerException如果抛出resolvernull

        参数
        resolver - XPath函数解析器。
        异常
        NullPointerException - 如果 resolvernull
      • getXPathFunctionResolver

        XPathFunctionResolver getXPathFunctionResolver()
        返回当前的函数解析器。

        null返回无功能解析器生效。

        结果
        当前功能解析器。
      • setNamespaceContext

        void setNamespaceContext​(NamespaceContext nsContext)
        建立命名空间上下文。

        一个NullPointerException如果抛出nsContextnull

        参数
        nsContext - 要使用的命名空间上下文。
        异常
        NullPointerException - 如果 nsContextnull
      • getNamespaceContext

        NamespaceContext getNamespaceContext()
        返回当前名称空间上下文。

        在没有名称空间上下文生效的情况下返回null

        结果
        当前命名空间上下文。
      • evaluate

        Object evaluate​(String expression,
                        Object item,
                        QName returnType)
                 throws XPathExpressionException
        在指定的上下文中计算XPath表达式,并将结果作为指定的类型返回。

        有关上下文项评估,变量,函数和QName分辨率和返回类型转换,请参阅Evaluation of XPath Expressions

        参数item表示将对XPath表达式进行操作的上下文。 上下文的类型取决于实现。 如果值为null ,则操作必须不依赖于上下文,否则将抛出XPathExpressionException。

        Implementation Note:
        上下文的类型通常是Node
        参数
        expression - XPath表达式。
        item - 将在其中计算XPath表达式的上下文。
        returnType - 期望由XPath表达式返回的结果类型。
        结果
        将XPath表达式计算为 ObjectreturnType
        异常
        XPathExpressionException - 如果无法评估 expression
        IllegalArgumentException -如果returnType不在定义的类型的一个XPathConstantsNUMBERSTRINGBOOLEANNODENODESET )。
        NullPointerException - 如果 expression or returnTypenull
      • evaluateExpression

        default <T> T evaluateExpression​(String expression,
                                         Object item,
                                         <T> type)
                                  throws XPathExpressionException
        在指定的上下文中计算XPath表达式,并使用通过class type指定的类型返回结果

        参数item表示将对其运行XPath表达式的上下文。 上下文的类型取决于实现。 如果值为null ,则操作必须不依赖于上下文,否则将引发XPathExpressionException。

        实现要求:
        XPath API中的默认实现等效于:
           (T)evaluate(expression, item, XPathEvaluationResult.XPathResultType.getQNameType(type));  
        由于evaluate方法不支持ANY类型,因此将XPathEvaluationResult指定为类型将导致IllegalArgumentException。 任何支持ANY类型的实现都必须覆盖此方法。
        Implementation Note:
        上下文的类型通常是Node
        参数类型
        T - XPath表达式将返回的类类型。
        参数
        expression - XPath表达式。
        item - 将在其中计算XPath表达式的上下文。
        type - 期望由XPath表达式返回的类类型。
        结果
        评估表达式的结果。
        异常
        XPathExpressionException - 如果无法计算表达式。
        IllegalArgumentException - 如果type不是与XPathEvaluationResult.XPathResultType定义的类型对应的类型,或者XPathEvaluationResult被指定为类型,但支持ANY类型的实现不可用。
        NullPointerException - 如果 expression or typenull
        从以下版本开始:
        9
      • evaluateExpression

        default XPathEvaluationResult<?> evaluateExpression​(String expression,
                                                            Object item)
                                                     throws XPathExpressionException
        评估指定上下文中的XPath表达式。 这等同于调用evaluateExpression(String expression, Object item, Class type)类型XPathEvaluationResult
           evaluateExpression(expression, item, XPathEvaluationResult.class);  

        参数item表示将对其执行XPath表达式的上下文。 上下文的类型取决于实现。 如果值为null ,则操作必须不依赖于上下文,否则将引发XPathExpressionException。

        实现要求:
        XPath API中的默认实现等效于:
           evaluateExpression(expression, item, XPathEvaluationResult.class);  
        由于evaluate方法不支持ANY类型,因此此方法的默认实现将始终抛出IllegalArgumentException。 因此,支持ANY类型的任何实现都必须覆盖此方法。
        Implementation Note:
        上下文的类型通常是Node
        参数
        expression - XPath表达式。
        item - 将在其中计算XPath表达式的上下文。
        结果
        评估表达式的结果。
        异常
        XPathExpressionException - 如果无法计算表达式。
        IllegalArgumentException - 如果此方法的实现不支持 ANY类型。
        NullPointerException - 如果 expressionnull
        从以下版本开始:
        9
      • evaluateExpression

        default <T> T evaluateExpression​(String expression,
                                         InputSource source,
                                         <T> type)
                                  throws XPathExpressionException
        在指定的source的上下文中计算XPath表达式,并返回指定的结果。

        此方法为InputSource构建数据模型,并在生成的文档对象上调用evaluateExpression(String expression, Object item, Class type) 数据模型通常为Document

        实现要求:
        XPath API中的默认实现等效于:
           (T)evaluate(expression, source, XPathEvaluationResult.XPathResultType.getQNameType(type));  
        由于evaluate方法不支持ANY类型,因此将XPathEvaluationResult指定为类型将导致IllegalArgumentException。 支持ANY类型的任何实现都必须覆盖此方法。
        参数类型
        T - XPath表达式将返回的类类型。
        参数
        expression - XPath表达式。
        source - 要评估的文档的输入源。
        type - 期望由XPath表达式返回的类类型。
        结果
        评估表达式的结果。
        异常
        XPathExpressionException - 如果无法计算表达式。
        IllegalArgumentException - 如果type不是与XPathResultType定义的类型对应的类型,或者XPathEvaluationResult被指定为类型,但支持ANY类型的实现不可用。
        NullPointerException - 如果 expression, source or typenull
        从以下版本开始:
        9