All Packages Class Hierarchy This Package Previous Next Index
Class java.io.PipedWriter
java.lang.Object
|
+----java.io.Writer
|
+----java.io.PipedWriter
- public class PipedWriter
- extends Writer
Piped character-output streams.
-
PipedWriter()
- Create a writer that is not yet connected to a piped reader.
-
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.
connect
public void connect(PipedReader sink) throws IOException
- Connect the specified piped reader to this 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
flush
public void flush() throws IOException
- Flush the stream.
- Throws: IOException
- If an I/O error occurs
- Overrides:
- flush in class Writer
close
public void close() throws IOException
- Close the stream.
- Throws: IOException
- If an I/O error occurs
- Overrides:
- close in class Writer
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature - Version 1.1.8 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1995-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.