Java org.springframework.util Base64Utils fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.util Base64Utils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.util Base64Utils.

The text is from its open source code.

Method

byte[]decode(byte[] src)
Base64-decode the given byte array.
byte[]decodeFromString(String src)
Base64-decode the given byte array from an UTF-8 String.
byte[]decodeFromUrlSafeString(String src)
Base64-decode the given byte array from an UTF-8 String using the RFC 4648 "URL and Filename Safe Alphabet".
byte[]encode(byte[] src)
Base64-encode the given byte array.
StringencodeToString(byte[] src)
Base64-encode the given byte array to a String.
StringencodeToUrlSafeString(byte[] src)
Base64-encode the given byte array to a String using the RFC 4648 "URL and Filename Safe Alphabet".
byte[]encodeUrlSafe(byte[] src)
Base64-encode the given byte array using the RFC 4648 "URL and Filename Safe Alphabet".