Class StreamUtil


  • public class StreamUtil
    extends Object
    Utility class for (Input/Output)Stream.
    • Method Detail

      • skipBytes

        public static void skipBytes​(InputStream stream,
                                     Integer n)
                              throws IOException
        Skips over and discards N bytes of data from the input stream.

        FileInputStream#skip may not work the first time, so ensure it successfully skips the given number of bytes.

        Parameters:
        stream - the stream to skip
        n - bytes to skip
        Throws:
        IOException