public class WriterOutputStream
extends java.io.OutputStream
| Constructor | Description |
|---|---|
WriterOutputStream(java.io.Writer writer) |
Creates a new WriterOutputStream.
|
WriterOutputStream(java.io.Writer writer,
java.lang.String encoding) |
Creates a new WriterOutputStream.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
close() |
|
void |
flush() |
|
void |
write(byte[] buf) |
|
void |
write(byte[] buf,
int offset,
int length) |
|
void |
write(int b) |
public WriterOutputStream(java.io.Writer writer)
writer - the Writer to write topublic WriterOutputStream(java.io.Writer writer,
java.lang.String encoding)
writer - the Writer to write toencoding - the encoding to use, or null if the default encoding should be usedpublic void close()
throws java.io.IOException
close in class java.io.OutputStreamjava.io.IOExceptionpublic void flush()
throws java.io.IOException
flush in class java.io.OutputStreamjava.io.IOExceptionpublic void write(byte[] buf,
int offset,
int length)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOExceptionpublic void write(byte[] buf)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOExceptionpublic void write(int b)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOExceptionCopyright 1999-2018 The Apache Software Foundation. All Rights Reserved.