StreamWriterpublic abstract class StreamWriter extends Writer General prototype for character converting stream writers. |
Fields Summary |
---|
public OutputStream | outOutput stream to write to |
Methods Summary |
---|
public void | close()Close the writer and the output stream.
if (out != null) {
out.close();
}
| public void | flush()Flush the writer and the output stream.
if (out != null) {
out.flush();
}
| public java.io.Writer | open(java.io.OutputStream out, java.lang.String enc)Open the writer
this.out = out;
return this;
| public abstract int | sizeOf(char[] array, int offset, int length)Get the size in bytes of an array of chars
|
|