public final class Base64 extends Object
| Modifier and Type | Field and Description |
|---|---|
static byte[] |
DEFAULT_TABLE |
static byte[] |
URL_TABLE |
| Constructor and Description |
|---|
Base64() |
| Modifier and Type | Method and Description |
|---|---|
static byte[] |
decode(byte[] s) |
static byte[] |
decode(byte[] s,
int len) |
static byte[] |
decodeFromChars(char[] s) |
static byte[] |
decodeFromChars(char[] s,
int len) |
static byte[] |
encode(byte[] s) |
static void |
encode(byte[] s,
byte[] result,
int p,
byte[] table) |
static char[] |
encodeToChars(byte[] s) |
static void |
encodeToChars(byte[] s,
char[] result,
int p,
byte[] table) |
static byte[] |
encodeUrl(byte[] s) |
static char[] |
encodeUrlToChars(byte[] s) |
public static final byte[] DEFAULT_TABLE
public static final byte[] URL_TABLE
public static byte[] encode(byte[] s)
public static byte[] encodeUrl(byte[] s)
public static void encode(byte[] s,
byte[] result,
int p,
byte[] table)
public static char[] encodeToChars(byte[] s)
public static char[] encodeUrlToChars(byte[] s)
public static void encodeToChars(byte[] s,
char[] result,
int p,
byte[] table)
public static byte[] decode(byte[] s)
public static byte[] decode(byte[] s,
int len)
public static byte[] decodeFromChars(char[] s)
public static byte[] decodeFromChars(char[] s,
int len)
Copyright © 2019. All rights reserved.