public final class Base64 extends Object
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(String encdata)
Decodes a specified base64-encoded String and returns the resulting
bytes.
|
static String |
encode(byte[] data)
Returns a String of base64-encoded characters to represent the specified
data array.
|
public static String encode(byte[] data)
data
- The array of bytes to encode.public static byte[] decode(String encdata)
encdata
- A String containing base64-encoded characters.Copyright © 2018–2025. All rights reserved.