Package org.apache.xmlgraphics.util
Class WriterOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.xmlgraphics.util.WriterOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public class WriterOutputStream extends java.io.OutputStream
An OutputStream wrapper for a Writer.
-
-
Constructor Summary
Constructors Constructor Description WriterOutputStream(java.io.Writer writer)
Creates a new WriterOutputStream.WriterOutputStream(java.io.Writer writer, java.lang.String encoding)
Creates a new WriterOutputStream.
-
Method Summary
All Methods Instance Methods Concrete Methods 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)
-
-
-
Constructor Detail
-
WriterOutputStream
public WriterOutputStream(java.io.Writer writer)
Creates a new WriterOutputStream.- Parameters:
writer
- the Writer to write to
-
WriterOutputStream
public WriterOutputStream(java.io.Writer writer, java.lang.String encoding)
Creates a new WriterOutputStream.- Parameters:
writer
- the Writer to write toencoding
- the encoding to use, or null if the default encoding should be used
-
-
Method Detail
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException
- Specified by:
flush
in interfacejava.io.Flushable
- Overrides:
flush
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] buf, int offset, int length) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] buf) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-