Class java.io.PipedWriter
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.io.PipedWriter

Object
   |
   +----Writer
           |
           +----java.io.PipedWriter

public class PipedWriter
extends Writer
Piped character-output streams.

Version:
1.6, 98/07/01
Author:
Mark Reinhold
Since:
JDK1.1

Constructor Index

 o java.io.PipedWriter()
Create a writer that is not yet connected to a piped reader.
 o java.io.PipedWriter(PipedReader)
Create a writer for the specified piped character-input stream.

Method Index

 o close()
Close the stream.
 o connect(PipedReader)
Connect the specified piped reader to this writer.
 o flush()
Flush the stream.
 o write(char[], int, int)
Write a portion of an array of characters.

Constructors

 o PipedWriter
public PipedWriter()
Create a writer that is not yet connected to a piped reader.

 o PipedWriter
public PipedWriter(PipedReader sink) throws IOException
Create a writer for the specified piped character-input stream.

Methods

 o close
public void close() throws IOException
Close the stream.

Throws: IOException
If an I/O error occurs
Overrides:
close in class Writer
 o connect
public void connect(PipedReader sink) throws IOException
Connect the specified piped reader to this writer.

 o flush
public void flush() throws IOException
Flush the stream.

Throws: IOException
If an I/O error occurs
Overrides:
flush in class Writer
 o write
public void write(char cbuf,
                  int off,
                  int len) throws IOException
Write a portion of an array of characters.

Parameters:
cbuf - Array of characters
off - Offset from which to start writing characters
len - Number of characters to write
Throws: IOException
If an I/O error occurs
Overrides:
write in class Writer

All Packages  Class Hierarchy  This Package  Previous  Next  Index