Java org.apache.commons.codec.net BCodec fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.commons.codec.net.BCodec has subclasses.
Click this link to see all its subclasses.

Constructor

BCodec()
Default constructor.
BCodec(final String charset)
Constructor which allows for the selection of a default charset

Method

Stringdecode(String value)
Decodes a Base64 string into its original form.
Objectdecode(Object value)
Decodes a Base64 object into its original form.
Stringencode(String value)
Encodes a string into its Base64 form using the default charset.
Objectencode(Object value)
Encodes an object into its Base64 form using the default charset.
Stringencode(final String value, final String charset)
Encodes a string into its Base64 form using the specified charset.