public class Base32 extends Object
| 构造器和说明 |
|---|
Base32() |
| 限定符和类型 | 方法和说明 |
|---|---|
static byte[] |
decode(byte[] data)
decode the base 32 encoded input data.
|
static int |
decode(byte[] base32Data,
int start,
int length,
OutputStream out)
Decode to an output stream;
|
static byte[] |
decode(String data)
decode the base 32 encoded String data - whitespace will be ignored.
|
static int |
decode(String data,
OutputStream out)
decode the base 32 encoded String data writing it to the given output stream,
whitespace characters will be ignored.
|
static byte[] |
encode(byte[] data)
encode the input data producing a base 32 encoded byte array.
|
static byte[] |
encode(byte[] data,
int off,
int length)
encode the input data producing a base 32 encoded byte array.
|
static int |
encode(byte[] data,
int off,
int length,
OutputStream out)
Encode the byte data to base 32 writing it to the given output stream.
|
static int |
encode(byte[] data,
OutputStream out)
Encode the byte data to base 32 writing it to the given output stream.
|
static String |
encodeToString(byte[] data) |
static String |
encodeToString(byte[] data,
int off,
int length) |
public static String encodeToString(byte[] data)
public static String encodeToString(byte[] data, int off, int length)
public static byte[] encode(byte[] data)
public static byte[] encode(byte[] data,
int off,
int length)
public static int encode(byte[] data,
OutputStream out)
throws IOException
IOExceptionpublic static int encode(byte[] data,
int off,
int length,
OutputStream out)
throws IOException
IOExceptionpublic static byte[] decode(byte[] data)
public static byte[] decode(String data)
public static int decode(String data, OutputStream out) throws IOException
IOExceptionpublic static int decode(byte[] base32Data,
int start,
int length,
OutputStream out)
base32Data - The source data.start - Start position.length - the length.out - The output stream to write to.Copyright © 2025 fossc. All rights reserved.