B C D E F G N O R S U W

B

Base64 - Class in <Unnamed>
Encodes and decodes to and from Base64 notation.
Base64.InputStream - Class in <Unnamed>
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 in <Unnamed>
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 in first bit.
decode(byte[]) - Static method in class Base64
Low-level access to decoding ASCII characters in the form of a byte array.
decode(byte[], int, int, int) - Static method in class Base64
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.
decode(String, int) - Static method in class Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decodeFileToFile(String, String) - Static method in class Base64
Reads infile and decodes it to outfile.
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.
DO_BREAK_LINES - Static variable in class Base64
Do break lines when encoding.

E

ENCODE - Static variable in class Base64
Specify encoding in first bit.
encode(ByteBuffer, ByteBuffer) - Static method in class Base64
Performs Base64 encoding on the raw ByteBuffer, writing it to the encoded ByteBuffer.
encode(ByteBuffer, CharBuffer) - Static method in class Base64
Performs Base64 encoding on the raw ByteBuffer, writing it to the encoded CharBuffer.
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.
encodeBytesToBytes(byte[]) - Static method in class Base64
Similar to Base64.encodeBytes(byte[]) but returns a byte array instead of instantiating a String.
encodeBytesToBytes(byte[], int, int, int) - Static method in class Base64
Similar to Base64.encodeBytes(byte[], int, int, int) but returns a byte array instead of instantiating a String.
encodeFileToFile(String, String) - Static method in class Base64
Reads infile and encodes it to outfile.
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

flush() - Method in class Base64.OutputStream
Flushes the stream (and the enclosing streams).
flushBase64() - Method in class Base64.OutputStream
Method added by PHIL.

G

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

N

NO_OPTIONS - Static variable in class Base64
No options specified.

O

ORDERED - Static variable in class Base64
Encode using the special "ordered" dialect of Base64 described here: http://www.faqs.org/qa/rfcc-1940.html.

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.

U

URL_SAFE - Static variable in class Base64
Encode using Base64-like encoding that is URL- and Filename-safe as described in Section 4 of RFC3548: http://www.faqs.org/rfcs/rfc3548.html.

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 write(int) repeatedly until len bytes are written.

B C D E F G N O R S U W