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
-
java.io.PipedWriter()
- Create a writer that is not yet connected to a piped reader.
-
java.io.PipedWriter(PipedReader)
- Create a writer for the specified piped character-input stream.
-
close()
- Close the stream.
-
connect(PipedReader)
- Connect the specified piped reader to this writer.
-
flush()
- Flush the stream.
-
write(char[], int, int)
- Write a portion of an array of characters.
PipedWriter
public PipedWriter()
- Create a writer that is not yet connected to a piped reader.
PipedWriter
public PipedWriter(PipedReader sink) throws IOException
- Create a writer for the specified piped character-input stream.
close
public void close() throws IOException
- Close the stream.
- Throws: IOException
- If an I/O error occurs
- Overrides:
- close in class Writer
connect
public void connect(PipedReader sink) throws IOException
- Connect the specified piped reader to this writer.
flush
public void flush() throws IOException
- Flush the stream.
- Throws: IOException
- If an I/O error occurs
- Overrides:
- flush in class Writer
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