Package by.stub.repackaged.org.apache.commons.io.output

Examples of by.stub.repackaged.org.apache.commons.io.output.ByteArrayOutputStream


    * {@link #copyLarge(InputStream, OutputStream)}
    */
   private static final int DEFAULT_BUFFER_SIZE = 1024 * 4;

   public static byte[] toByteArray(InputStream input) throws IOException {
      ByteArrayOutputStream output = new ByteArrayOutputStream();
      copy(input, output);
      return output.toByteArray();
   }
View Full Code Here

TOP

Related Classes of by.stub.repackaged.org.apache.commons.io.output.ByteArrayOutputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.