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 Details

    • parse

      IDocumentNode parse (InputStream XmlStream, String charset) throws 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:
      IOException - Signals that an I/O exception has occurred.
    • parse

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