Java IO Tutorial - Java PrintWriter(OutputStream out) Constructor








Syntax

PrintWriter(OutputStream out) constructor from PrintWriter has the following syntax.

public PrintWriter(OutputStream out)

Example

In the following code shows how to use PrintWriter.PrintWriter(OutputStream out) constructor.

/*  w w  w. ja v a  2  s. c  o m*/

import java.io.*;

public class Main {

   public static void main(String[] args) {
      try {
         PrintWriter pw = new PrintWriter(System.out);

         // append chars
         pw.append('H');
         pw.append('e');
         pw.append('l');
         pw.append('l');
         pw.append('o');

         // flush the writer
         pw.flush();

      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

The code above generates the following result.