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 变量和类型 方法 描述 InputSource
CatalogResolver. resolveEntity(String publicId, String systemId)
实施EntityResolver
。 -
Uses of InputSource in javax.xml.parsers
Methods in javax.xml.parsers with parameters of type InputSource 变量和类型 方法 描述 abstract Document
DocumentBuilder. parse(InputSource is)
将给定输入源的内容解析为XML文档,并返回一个新的DOMDocument
对象。void
SAXParser. parse(InputSource is, HandlerBase hb)
使用指定的HandlerBase
将给定的内容InputSource
解析为XML。void
SAXParser. 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 变量和类型 方法 描述 InputSource
SAXSource. getInputSource()
获取要用于Source的SAX InputSource。static InputSource
SAXSource. sourceToInputSource(Source source)
尝试从Source对象获取SAX InputSource对象。Methods in javax.xml.transform.sax with parameters of type InputSource 变量和类型 方法 描述 void
SAXSource. 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 变量和类型 方法 描述 String
XPath. evaluate(String expression, InputSource source)
在指定的InputSource
的上下文中计算XPath表达式,并将结果返回为String
。Object
XPath. evaluate(String expression, InputSource source, QName returnType)
在指定的InputSource
的上下文中计算XPath表达式,并将结果作为指定的类型返回。String
XPathExpression. evaluate(InputSource source)
在指定的InputSource
的上下文中计算已编译的XPath表达式,并将结果返回为String
。Object
XPathExpression. evaluate(InputSource source, QName returnType)
在指定的InputSource
的上下文中计算已编译的XPath表达式,并将结果作为指定的类型返回。default XPathEvaluationResult<?>
XPath. evaluateExpression(String expression, InputSource source)
评估指定上下文中的XPath表达式。default <T> T
XPath. evaluateExpression(String expression, InputSource source, 类<T> type)
在指定的source
的上下文中计算XPath表达式,并返回指定的结果。default XPathEvaluationResult<?>
XPathExpression. evaluateExpression(InputSource source)
在指定的上下文中评估已编译的XPath表达式。default <T> T
XPathExpression. evaluateExpression(InputSource source, 类<T> type)
在指定的上下文中计算已编译的XPath表达式,并返回具有通过class type
指定的类型的结果 -
Uses of InputSource in org.xml.sax
Methods in org.xml.sax that return InputSource 变量和类型 方法 描述 InputSource
EntityResolver. resolveEntity(String publicId, String systemId)
允许应用程序解析外部实体。InputSource
HandlerBase. resolveEntity(String publicId, String systemId)
已过时。解决外部实体。Methods in org.xml.sax with parameters of type InputSource 变量和类型 方法 描述 void
Parser. parse(InputSource source)
已过时。解析XML文档。void
XMLReader. parse(InputSource input)
解析XML文档。 -
Uses of InputSource in org.xml.sax.ext
Methods in org.xml.sax.ext that return InputSource 变量和类型 方法 描述 InputSource
DefaultHandler2. getExternalSubset(String name, String baseURI)
告诉解析器如果文档文本中没有声明外部子集,则不应使用任何外部子集。InputSource
EntityResolver2. getExternalSubset(String name, String baseURI)
允许应用程序为未明确定义文档的文档提供外部子集。InputSource
DefaultHandler2. resolveEntity(String publicId, String systemId)
使用空实体名称和基URI调用EntityResolver2.resolveEntity()
。InputSource
DefaultHandler2. resolveEntity(String name, String publicId, String baseURI, String systemId)
告诉解析器针对baseURI解析systemId,并从生成的绝对URI中读取实体文本。InputSource
EntityResolver2. 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 变量和类型 方法 描述 InputSource
DefaultHandler. resolveEntity(String publicId, String systemId)
解决外部实体。InputSource
XMLFilterImpl. resolveEntity(String publicId, String systemId)
过滤外部实体解析。Methods in org.xml.sax.helpers with parameters of type InputSource 变量和类型 方法 描述 void
ParserAdapter. parse(InputSource input)
解析XML文档。void
XMLFilterImpl. parse(InputSource input)
解析文档。void
XMLReaderAdapter. parse(InputSource input)
解析文档。
-