Example usage for java.io PipedWriter write

List of usage examples for java.io PipedWriter write

Introduction

In this page you can find the example usage for java.io PipedWriter write.

Prototype

public void write(char cbuf[], int off, int len) throws IOException 

Source Link

Document

Writes len characters from the specified character array starting at offset off to this piped output stream.

Usage

From source file:Main.java

public static void main(String[] args) {

    char[] c = { 'h', 'e', 'l', 'l', 'o' };
    PipedWriter writer = new PipedWriter();
    PipedReader reader = new PipedReader();

    try {/* w w  w.  j  av  a 2  s.c o  m*/
        // connect the reader and the writer
        writer.connect(reader);

        writer.write(c, 0, 3);

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

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

}