org.apache.commons.codec.binary
Class BaseNCodecOutputStream
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
org.apache.commons.codec.binary.BaseNCodecOutputStream
- All Implemented Interfaces:
- Closeable, Flushable
- Direct Known Subclasses:
- Base32OutputStream, Base64OutputStream
public class BaseNCodecOutputStream
- extends FilterOutputStream
Abstract superclass for Base-N output streams.
- Since:
- 1.5
- Version:
- $Id: BaseNCodecOutputStream.html 889935 2013-12-11 05:05:13Z ggregory $
Method Summary |
void |
close()
Closes this output stream and releases any system resources associated with the stream. |
void |
flush()
Flushes this output stream and forces any buffered output bytes to be written out to the stream. |
void |
write(byte[] b,
int offset,
int len)
Writes len bytes from the specified b array starting at offset to this
output stream. |
void |
write(int i)
Writes the specified byte to this output stream. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BaseNCodecOutputStream
public BaseNCodecOutputStream(OutputStream out,
BaseNCodec basedCodec,
boolean doEncode)
write
public void write(int i)
throws IOException
- Writes the specified
byte
to this output stream.
- Overrides:
write
in class FilterOutputStream
- Parameters:
i
- source byte
- Throws:
IOException
- if an I/O error occurs.
write
public void write(byte[] b,
int offset,
int len)
throws IOException
- Writes
len
bytes from the specified b
array starting at offset
to this
output stream.
- Overrides:
write
in class FilterOutputStream
- Parameters:
b
- source byte arrayoffset
- where to start reading the byteslen
- maximum number of bytes to write
- Throws:
IOException
- if an I/O error occurs.
NullPointerException
- if the byte array parameter is null
IndexOutOfBoundsException
- if offset, len or buffer size are invalid
flush
public void flush()
throws IOException
- Flushes this output stream and forces any buffered output bytes to be written out to the stream.
- Specified by:
flush
in interface Flushable
- Overrides:
flush
in class FilterOutputStream
- Throws:
IOException
- if an I/O error occurs.
close
public void close()
throws IOException
- Closes this output stream and releases any system resources associated with the stream.
- Specified by:
close
in interface Closeable
- Overrides:
close
in class FilterOutputStream
- Throws:
IOException
- if an I/O error occurs.
Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.