Java org.apache.commons.codec.binary Base64Codec fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.codec.binary Base64Codec fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.codec.binary Base64Codec.

The text is from its open source code.

Method

byte[]decodeBase64(String base64String)
Decodes a Base64 String into octets
byte[]decodeBase64(byte[] base64Data)
Decodes Base64 data into octets
byte[]encodeBase64(byte[] binaryData)
Encodes binary data using the base64 algorithm but does not chunk the output.
StringencodeBase64String(byte[] binaryData)
Encodes binary data using the base64 algorithm into 76 character blocks separated by CRLF.