public class WriterOutputStream extends OutputStream
Constructor and Description |
---|
WriterOutputStream(Writer writer)
Creates a new WriterOutputStream.
|
WriterOutputStream(Writer writer,
String encoding)
Creates a new WriterOutputStream.
|
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
flush() |
void |
write(byte[] buf) |
void |
write(byte[] buf,
int offset,
int length) |
void |
write(int b) |
public WriterOutputStream(Writer writer)
writer
- the Writer to write topublic void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class OutputStream
IOException
public void flush() throws IOException
flush
in interface Flushable
flush
in class OutputStream
IOException
public void write(byte[] buf, int offset, int length) throws IOException
write
in class OutputStream
IOException
public void write(byte[] buf) throws IOException
write
in class OutputStream
IOException
public void write(int b) throws IOException
write
in class OutputStream
IOException
Copyright © 2019 Apache Software Foundation. All rights reserved.