Class IOUtils


  • @Deprecated
    public class IOUtils
    extends java.lang.Object
    Deprecated.
    Utils to manage IO streams.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private IOUtils()
      Deprecated.
      Private constructor to prevent instantiation.
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static void closeQuietly​(java.io.Closeable stream)
      Deprecated.
      use java7 closeable
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IOUtils

        private IOUtils()
        Deprecated.
        Private constructor to prevent instantiation.
    • Method Detail

      • closeQuietly

        public static void closeQuietly​(java.io.Closeable stream)
        Deprecated.
        use java7 closeable
        Closes a stream without returning any exception.
        Parameters:
        stream - the stream to close. Can be null.