B C D E R T W

B

Base64Decoder - Class in com.gridsystems
A class to decode Base64 streams and strings.
Base64Decoder(InputStream) - Constructor for class com.gridsystems.Base64Decoder
Constructs a new Base64 decoder that reads input from the given InputStream.
Base64Encoder - Class in com.gridsystems
A class to encode Base64 streams and strings.
Base64Encoder(OutputStream) - Constructor for class com.gridsystems.Base64Encoder
Constructs a new Base64 encoder that writes output to the given OutputStream.
Base64Utils - Class in com.gridsystems
Common methods used within both the encoder and the decoder classes.
binaryDecode(byte[]) - Static method in class com.gridsystems.Base64Decoder
Returns the decoded form of the given encoded byte array.
binaryEncode(byte[]) - Static method in class com.gridsystems.Base64Encoder
Returns the encoded form of the given unencoded byte array.
binaryEncode(InputStream) - Static method in class com.gridsystems.Base64Encoder
Returns the encoded form of the given unencoded byte array.

C

close() - Method in class com.gridsystems.Base64Encoder
Closes the stream, this MUST be called to ensure proper padding is written to the end of the output stream.
com.gridsystems - package com.gridsystems
 

D

decode(String) - Static method in class com.gridsystems.Base64Decoder
Returns the decoded form of the given encoded string.

E

encode(String) - Static method in class com.gridsystems.Base64Encoder
Returns the Base64 encoded form of the given string.

R

read() - Method in class com.gridsystems.Base64Decoder
Returns the next decoded character from the stream, or -1 if end of stream was reached.
read(byte[], int, int) - Method in class com.gridsystems.Base64Decoder
Reads decoded data into an array of bytes and returns the actual number of bytes read, or -1 if end of stream was reached.

T

toByteArray(String) - Static method in class com.gridsystems.Base64Utils
Returns a byte array representing the contents of the given string, applying a UTF-8 encoding.
toString(byte[]) - Static method in class com.gridsystems.Base64Utils
Returns a String representing the contents of the given byte array, applying a UTF-8 decoding.

W

write(int) - Method in class com.gridsystems.Base64Encoder
Writes the given byte to the output stream in an encoded form.
write(byte[], int, int) - Method in class com.gridsystems.Base64Encoder
Writes the given byte array to the output stream in an encoded form.
write(String) - Method in class com.gridsystems.Base64Encoder
Write a String to the output stream.

B C D E R T W

Copyright © 2007-2008 Grid Systems, S.A.. All Rights Reserved.