Java IO Tutorial - Java PipedWriter.write(int c)








Syntax

PipedWriter.write(int c) has the following syntax.

public void write(int c)  throws IOException

Example

In the following code shows how to use PipedWriter.write(int c) method.

import java.io.*;
//from   w  w w  . ja va  2  s  .c  o 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('A');
         writer.write('B');

         // 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.