public class Base64OutputStream
extends java.io.OutputStream
| Constructor and Description |
|---|
Base64OutputStream(java.io.OutputStream outputStream) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
protected void |
encodeUnit(byte byteValue) |
protected void |
encodeUnit(byte byte1,
byte byte2) |
protected void |
encodeUnit(byte byte1,
byte byte2,
byte byte3) |
void |
flush() |
protected char |
getChar(int sixbit) |
void |
write(byte[] bytes) |
void |
write(byte[] bytes,
int offset,
int length) |
void |
write(int byteValue) |
public void close()
throws java.io.IOException
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in class java.io.OutputStreamjava.io.IOExceptionpublic void flush()
throws java.io.IOException
flush in interface java.io.Flushableflush in class java.io.OutputStreamjava.io.IOExceptionpublic void write(byte[] bytes)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOExceptionpublic void write(byte[] bytes,
int offset,
int length)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOExceptionpublic void write(int byteValue)
throws java.io.IOException
write in class java.io.OutputStreamjava.io.IOExceptionprotected void encodeUnit(byte byteValue)
throws java.io.IOException
java.io.IOExceptionprotected void encodeUnit(byte byte1,
byte byte2)
throws java.io.IOException
java.io.IOExceptionprotected void encodeUnit(byte byte1,
byte byte2,
byte byte3)
throws java.io.IOException
java.io.IOExceptionprotected char getChar(int sixbit)