Java IO Tutorial - Java PrintStream(OutputStream out, boolean autoFlush, String encoding) Constructor








Syntax

PrintStream(OutputStream out, boolean autoFlush, String encoding) constructor from PrintStream has the following syntax.

public PrintStream(OutputStream out,
                               boolean autoFlush,    
                               String encoding)   
                   throws UnsupportedEncodingException

Example

In the following code shows how to use PrintStream.PrintStream(OutputStream out, boolean autoFlush, String encoding) constructor.

//www  .  j a v  a  2 s .  c o  m
import java.io.*;

public class Main {

   public static void main(String[] args) throws UnsupportedEncodingException {
      byte c = 70;

      
      PrintStream ps = new PrintStream(System.out,true,"UTF8");

      // write byte c which is character F in ASCII
      ps.write(c);

      // flush the stream
      ps.flush();

   }
}

The code above generates the following result.