public class WriterOutputStream
extends java.io.OutputStream
Constructor and Description |
---|
WriterOutputStream(java.io.Writer writer)
Creates a new WriterOutputStream.
|
WriterOutputStream(java.io.Writer writer,
java.lang.String encoding)
Creates a new WriterOutputStream.
|
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.io.Closeable
close
in interface java.lang.AutoCloseable
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-2012 The Apache Software Foundation. All Rights Reserved.