public class Base64 extends Object
| 构造器和说明 |
|---|
Base64() |
| 限定符和类型 | 方法和说明 |
|---|---|
static byte[] |
decodeFast(char[] chars,
int offset,
int charsLen)
Decodes a BASE64 encoded char array that is known to be resonably well formatted.
|
static byte[] |
decodeFast(String s)
Decodes a BASE64 encoded string that is known to be resonably well formatted.
|
static byte[] |
decodeFast(String chars,
int offset,
int charsLen) |
public static byte[] decodeFast(char[] chars,
int offset,
int charsLen)
chars - The source array. Length 0 will return an empty array. null will throw an exception.public static byte[] decodeFast(String chars, int offset, int charsLen)
public static byte[] decodeFast(String s)
s - The source string. Length 0 will return an empty array. null will throw an exception.Copyright © 2012–2015 Alibaba Group. All rights reserved.