Java IO Tutorial - Java PipedWriter.close()








Syntax

PipedWriter.close() has the following syntax.

public void close()  throws IOException

Example

In the following code shows how to use PipedWriter.close() method.

import java.io.*;
/* ww  w.  ja  va  2  s .  co  m*/
public class Main {

   public static void main(String[] args) {

      PipedWriter writer = new PipedWriter();
      PipedReader reader = new PipedReader();

      try {
         // connect the reader and the writer
         writer.connect(reader);

         writer.write(70);
         writer.write(71);

         writer.close();

         // print what we wrote
         for (int i = 0; i < 2; i++) {
            System.out.println((char) reader.read());
         }

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


   }
}

The code above generates the following result.