B C D E F G N R S W

B

Base64 - class Base64.
Encodes and decodes to and from Base64 notation.
Base64.InputStream - class Base64.InputStream.
A 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.InputStream(InputStream) - Constructor for class Base64.InputStream
Constructs a Base64.InputStream in DECODE mode.
Base64.InputStream(InputStream, int) - Constructor for class Base64.InputStream
Constructs a Base64.InputStream in either ENCODE or DECODE mode.
Base64.OutputStream - class Base64.OutputStream.
A Base64.OutputStream will write data to another java.io.OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.OutputStream(OutputStream) - Constructor for class Base64.OutputStream
Constructs a Base64.OutputStream in ENCODE mode.
Base64.OutputStream(OutputStream, int) - Constructor for class Base64.OutputStream
Constructs a Base64.OutputStream in either ENCODE or DECODE mode.

C

close() - Method in class Base64.OutputStream
Flushes and closes (I think, in the superclass) the stream.

D

DECODE - Static variable in class Base64
Specify decoding.
DONT_BREAK_LINES - Static variable in class Base64
Don't break lines when encoding (violates strict Base64 specification)
decode(byte[], int, int) - Static method in class Base64
Very low-level access to decoding ASCII characters in the form of a byte array.
decode(String) - Static method in class Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decodeFromFile(String) - Static method in class Base64
Convenience method for reading a base64-encoded file and decoding it.
decodeToFile(String, String) - Static method in class Base64
Convenience method for decoding data to a file.
decodeToObject(String) - Static method in class Base64
Attempts to decode Base64 data and deserialize a Java Object within.

E

ENCODE - Static variable in class Base64
Specify encoding.
encodeBytes(byte[]) - Static method in class Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int) - Static method in class Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int) - Static method in class Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int, int) - Static method in class Base64
Encodes a byte array into Base64 notation.
encodeFromFile(String) - Static method in class Base64
Convenience method for reading a binary file and base64-encoding it.
encodeObject(Serializable) - Static method in class Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeObject(Serializable, int) - Static method in class Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeToFile(byte[], String) - Static method in class Base64
Convenience method for encoding data to a file.

F

flushBase64() - Method in class Base64.OutputStream
Method added by PHIL.

G

GZIP - Static variable in class Base64
Specify that data should be gzip-compressed.

N

NO_OPTIONS - Static variable in class Base64
No options specified.

R

read() - Method in class Base64.InputStream
Reads enough of the input stream to convert to/from Base64 and returns the next byte.
read(byte[], int, int) - Method in class Base64.InputStream
Calls Base64.InputStream.read() repeatedly until the end of stream is reached or len bytes are read.
resumeEncoding() - Method in class Base64.OutputStream
Resumes encoding of the stream.

S

suspendEncoding() - Method in class Base64.OutputStream
Suspends encoding of the stream.

W

write(int) - Method in class Base64.OutputStream
Writes the byte to the output stream after converting to/from Base64 notation.
write(byte[], int, int) - Method in class Base64.OutputStream
Calls Base64.OutputStream.write(int) repeatedly until len bytes are written.

B C D E F G N R S W