Module  java.xml

Class SAXResult

  • All Implemented Interfaces:
    Result
    已知直接子类:
    JAXBResult


    public class SAXResult
    extends Object
    implements Result

    作为转型结果的持有人。

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

      • SAXResult

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

      • setHandler

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

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

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

        参数
        handler - 用于处理词法解析事件的非空值 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
        结果
        使用setSystemId设置的系统标识符,如果未调用setSystemId,则为null。