Java java.io PipedWriter fields, constructors, methods, implement or subclass

Example usage for Java java.io PipedWriter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.io PipedWriter.

The text is from its open source code.

Constructor

PipedWriter()
Creates a piped writer that is not yet connected to a piped reader.
PipedWriter(PipedReader snk)
Creates a piped writer connected to the specified piped reader.

Method

Writerappend(CharSequence csq)
Appends the specified character sequence to this writer.
voidclose()
Closes this piped output stream and releases any system resources associated with this stream.
voidconnect(PipedReader snk)
Connects this piped writer to a receiver.
voidflush()
Flushes this output stream and forces any buffered output characters to be written out.
voidwrite(int c)
Writes the specified char to the piped output stream.
voidwrite(char cbuf[], int off, int len)
Writes len characters from the specified character array starting at offset off to this piped output stream.