Java IO Tutorial - Java ByteArrayOutputStream() Constructor








Syntax

ByteArrayOutputStream() constructor from ByteArrayOutputStream has the following syntax.

public ByteArrayOutputStream()

Example

In the following code shows how to use ByteArrayOutputStream.ByteArrayOutputStream() constructor.

//from w w w .  j a va 2  s. c  om
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;

public class Main {
  public static void main(String[] args) throws IOException {

    byte[] bs = { 65, 66, 67, 68, 69, 70, 71, 72 };

    OutputStream os = new ByteArrayOutputStream();

    ByteArrayOutputStream baos = new ByteArrayOutputStream();

    baos.write(bs);

    baos.writeTo(os);

    System.out.println(os.toString());

  }
}

The code above generates the following result.