Uses of Class
org.xml.sax.InputSource
-
Packages that use InputSource 软件包 描述 java.beans 包含与开发 bean相关的类 - 基于JavaBeans™体系结构的组件。javax.xml.catalog javax.xml.parsers 提供使用SAX(Simple API for XML)解析器或DOM(文档对象模型)文档构建器处理XML文档的类。javax.xml.transform.sax 提供SAX特定的转换类。javax.xml.xpath 提供 对象模型中性 API,用于评估XPath表达式和访问评估环境。org.xml.sax 提供核心SAX API。org.xml.sax.ext 为SAX2设施提供符合SAX驱动程序不一定支持的接口。org.xml.sax.helpers 提供帮助程序类,包括支持引导基于SAX的应用程序。 -
-
Uses of InputSource in java.beans
Constructors in java.beans with parameters of type InputSource 构造器 描述 XMLDecoder(InputSource is)创建一个新解码器来解析由XMLEncoder类创建的XML归档。 -
Uses of InputSource in javax.xml.catalog
Methods in javax.xml.catalog that return InputSource 变量和类型 方法 描述 InputSourceCatalogResolver. resolveEntity(String publicId, String systemId)实施EntityResolver。 -
Uses of InputSource in javax.xml.parsers
Methods in javax.xml.parsers with parameters of type InputSource 变量和类型 方法 描述 abstract DocumentDocumentBuilder. parse(InputSource is)将给定输入源的内容解析为XML文档,并返回一个新的DOMDocument对象。voidSAXParser. parse(InputSource is, HandlerBase hb)使用指定的HandlerBase将给定的内容InputSource解析为XML。voidSAXParser. parse(InputSource is, DefaultHandler dh)使用指定的DefaultHandler将给定的内容InputSource解析为XML。 -
Uses of InputSource in javax.xml.transform.sax
Methods in javax.xml.transform.sax that return InputSource 变量和类型 方法 描述 InputSourceSAXSource. getInputSource()获取要用于Source的SAX InputSource。static InputSourceSAXSource. sourceToInputSource(Source source)尝试从Source对象获取SAX InputSource对象。Methods in javax.xml.transform.sax with parameters of type InputSource 变量和类型 方法 描述 voidSAXSource. setInputSource(InputSource inputSource)设置要用于源的SAX InputSource。Constructors in javax.xml.transform.sax with parameters of type InputSource 构造器 描述 SAXSource(InputSource inputSource)创建SAXSource,使用SAXInputSource。SAXSource(XMLReader reader, InputSource inputSource)使用XMLReader和SAX InputSource创建SAXSource。 -
Uses of InputSource in javax.xml.xpath
Methods in javax.xml.xpath with parameters of type InputSource 变量和类型 方法 描述 StringXPath. evaluate(String expression, InputSource source)在指定的InputSource的上下文中计算XPath表达式,并将结果返回为String。ObjectXPath. evaluate(String expression, InputSource source, QName returnType)在指定的InputSource的上下文中计算XPath表达式,并将结果作为指定的类型返回。StringXPathExpression. evaluate(InputSource source)在指定的InputSource的上下文中计算已编译的XPath表达式,并将结果返回为String。ObjectXPathExpression. evaluate(InputSource source, QName returnType)在指定的InputSource的上下文中计算已编译的XPath表达式,并将结果作为指定的类型返回。default XPathEvaluationResult<?>XPath. evaluateExpression(String expression, InputSource source)评估指定上下文中的XPath表达式。default <T> TXPath. evaluateExpression(String expression, InputSource source, 类<T> type)在指定的source的上下文中计算XPath表达式,并返回指定的结果。default XPathEvaluationResult<?>XPathExpression. evaluateExpression(InputSource source)在指定的上下文中评估已编译的XPath表达式。default <T> TXPathExpression. evaluateExpression(InputSource source, 类<T> type)在指定的上下文中计算已编译的XPath表达式,并返回具有通过class type指定的类型的结果 -
Uses of InputSource in org.xml.sax
Methods in org.xml.sax that return InputSource 变量和类型 方法 描述 InputSourceEntityResolver. resolveEntity(String publicId, String systemId)允许应用程序解析外部实体。InputSourceHandlerBase. resolveEntity(String publicId, String systemId)已过时。解决外部实体。Methods in org.xml.sax with parameters of type InputSource 变量和类型 方法 描述 voidParser. parse(InputSource source)已过时。解析XML文档。voidXMLReader. parse(InputSource input)解析XML文档。 -
Uses of InputSource in org.xml.sax.ext
Methods in org.xml.sax.ext that return InputSource 变量和类型 方法 描述 InputSourceDefaultHandler2. getExternalSubset(String name, String baseURI)告诉解析器如果文档文本中没有声明外部子集,则不应使用任何外部子集。InputSourceEntityResolver2. getExternalSubset(String name, String baseURI)允许应用程序为未明确定义文档的文档提供外部子集。InputSourceDefaultHandler2. resolveEntity(String publicId, String systemId)使用空实体名称和基URI调用EntityResolver2.resolveEntity()。InputSourceDefaultHandler2. resolveEntity(String name, String publicId, String baseURI, String systemId)告诉解析器针对baseURI解析systemId,并从生成的绝对URI中读取实体文本。InputSourceEntityResolver2. resolveEntity(String name, String publicId, String baseURI, String systemId)允许应用程序将对外部实体的引用映射到输入源,或告诉解析器它应该使用传统的URI解析。 -
Uses of InputSource in org.xml.sax.helpers
Methods in org.xml.sax.helpers that return InputSource 变量和类型 方法 描述 InputSourceDefaultHandler. resolveEntity(String publicId, String systemId)解决外部实体。InputSourceXMLFilterImpl. resolveEntity(String publicId, String systemId)过滤外部实体解析。Methods in org.xml.sax.helpers with parameters of type InputSource 变量和类型 方法 描述 voidParserAdapter. parse(InputSource input)解析XML文档。voidXMLFilterImpl. parse(InputSource input)解析文档。voidXMLReaderAdapter. parse(InputSource input)解析文档。
-