Package javaforce
Class Base64
java.lang.Object
javaforce.Base64
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Base64
public Base64()
-
-
Method Details
-
encode
public static final byte[] encode(byte[] in) Encodes raw data into Base64 format.- Parameters:
in- = input data
-
encode
public static final byte[] encode(byte[] in, int lineLength) Encodes raw data into Base64 format.- Parameters:
in- = input datalineLength- = max line length (-1 to ignore)
-
decode
public static final byte[] decode(byte[] in) Decodes Base64 data into raw data.- Parameters:
in- = input data
-