Class StreamHelper


  • public final class StreamHelper
    extends java.lang.Object
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean copyStream​(java.io.InputStream inStream, java.io.OutputStream outStream)
      Copy the input stream into the output stream.
      static boolean saveXmlInStream​(org.w3c.dom.Document xmlContent, java.io.OutputStream outStream)
      Save the document object in the specified output stream.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • saveXmlInStream

        public static boolean saveXmlInStream​(org.w3c.dom.Document xmlContent,
                                              java.io.OutputStream outStream)
        Save the document object in the specified output stream.
        Parameters:
        xmlContent - The XML document.
        outStream - The OutputStream in which the XML document will be written.
        Returns:
        true if the xml is successfully written in the stream, else false.
      • copyStream

        public static boolean copyStream​(java.io.InputStream inStream,
                                         java.io.OutputStream outStream)
        Copy the input stream into the output stream.
        Parameters:
        inStream - The source stream.
        outStream - The destination stream.
        Returns:
        true if the operation succeed, else return false.