Base64.InputStream will read data from another
java.io.InputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly.Base64.OutputStream will write data to another
java.io.OutputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly.raw ByteBuffer,
writing it to the encoded ByteBuffer.raw ByteBuffer,
writing it to the encoded CharBuffer.Base64.encodeBytes(byte[]) but returns
a byte array instead of instantiating a String.Base64.encodeBytes(byte[], int, int, int) but returns
a byte array instead of instantiating a String.Base64.InputStream in DECODE mode.Base64.InputStream in
either ENCODE or DECODE mode.Base64.OutputStream in ENCODE mode.Base64.OutputStream in
either ENCODE or DECODE mode.Base64.InputStream.read() repeatedly until the end of stream
is reached or len bytes are read.write(int) repeatedly until len
bytes are written.Copyright © 2024. All rights reserved.