java.io.Closeable
, java.io.Flushable
, java.lang.AutoCloseable
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 interface java.lang.AutoCloseable
close
in interface java.io.Closeable
close
in class java.io.OutputStream
java.io.IOException
public void flush() throws java.io.IOException
flush
in interface java.io.Flushable
flush
in class java.io.OutputStream
java.io.IOException
public void write(byte[] buf, int offset, int length) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
public void write(byte[] buf) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
public void write(int b) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
Copyright 1999-2016 The Apache Software Foundation. All Rights Reserved.