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

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


   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();
   }

   /**
    * Copy bytes from an <code>InputStream</code> to an
    * <code>OutputStream</code>.
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.