模块  java.xml

Class SAXResult

  • 实现的所有接口
    Result

    public class SAXResult
    extends Object
    implements Result

    充当转换结果的持有者。

    从以下版本开始:
    1.4
    • 构造方法详细信息

      • SAXResult

        public SAXResult()
        零参数默认构造函数。
    • 方法详细信息

      • setHandler

        public void setHandler​(ContentHandler handler)
        将目标设置为SAX2 ContentHandler
        参数
        handler - 必须是非null的ContentHandler引用。
      • setLexicalHandler

        public void setLexicalHandler​(LexicalHandler handler)
        将SAX2 LexicalHandler设置为输出。

        这是处理XML注释等所必需的。 如果未设置词法处理程序,则变换器应尝试将ContentHandler强制转换为LexicalHandler

        参数
        handler - 用于处理词法分析事件的非null LexicalHandler
      • getLexicalHandler

        public LexicalHandler getLexicalHandler()
        获取SAX2 LexicalHandler作为输出。
        结果
        A LexicalHandler ,或null。
      • setSystemId

        public void setSystemId​(String systemId)
        方法setSystemId设置可以与ContentHandler关联使用的systemID
        Specified by:
        setSystemId接口 Result
        参数
        systemId - 系统标识符作为URI字符串。
      • getSystemId

        public String getSystemId()
        获取使用setSystemId设置的系统标识符。
        Specified by:
        getSystemId在界面 Result
        结果
        The system identifier that was set with setSystemId, or null if setSystemId was not called.