Most visited

Recently visited

Added in API level 8

URIResolver

public interface URIResolver

javax.xml.transform.URIResolver


一个实现此接口的对象,可由处理器调用以将document(),xsl:import或xsl:include中使用的URI转换为Source对象。

摘要(Summary)

公共方法(Public methods)

abstract Source resolve(String href, String base)

处理器在遇到xsl:include,xsl:import或document()函数时调用。

公共方法(Public methods)

resolve

Added in API level 8
Source resolve (String href, 
                String base)

处理器在遇到xsl:include,xsl:import或document()函数时调用。

参数(Parameters)
href String: An href attribute, which may be relative or absolute.
base String: The base URI against which the first argument will be made absolute if the absolute URI is required.
返回(Returns)
Source A Source object, or null if the href cannot be resolved, and the processor should try to resolve the URI itself.
抛出异常(Throws)
TransformerException if an error occurs when trying to resolve the URI.

Hooray!