Interface IXmlParser

  • All Known Implementing Classes:
    JsoupHtmlParser, JsoupXmlParser

    public interface IXmlParser
    Interface for the XML parsing operations that accept XML and return a document node.
    • Method Detail

      • parse

        IDocumentNode parse​(java.io.InputStream XmlStream,
                            java.lang.String charset)
                     throws java.io.IOException
        Parses XML provided as an InputStream and an encoding.
        Parameters:
        XmlStream - the Xml stream
        charset - the character set. If null then parser should detect encoding from stream.
        Returns:
        a document node
        Throws:
        java.io.IOException - Signals that an I/O exception has occurred.
      • parse

        IDocumentNode parse​(java.lang.String Xml)
        Parses XML provided as a String.
        Parameters:
        Xml - the Xml string
        Returns:
        a document node