public class Base62Codec extends Object implements Encoder<byte[],byte[]>, Decoder<byte[],byte[]>, Serializable
Modifier and Type | Class and Description |
---|---|
static class |
Base62Codec.Base62Decoder
Base62解码器
|
static class |
Base62Codec.Base62Encoder
Base62编码器
|
Modifier and Type | Field and Description |
---|---|
static Base62Codec |
INSTANCE |
Constructor and Description |
---|
Base62Codec() |
Modifier and Type | Method and Description |
---|---|
byte[] |
decode(byte[] encoded)
解码Base62消息
|
byte[] |
decode(byte[] encoded,
boolean useInverted)
解码Base62消息
|
byte[] |
encode(byte[] data)
编码指定消息bytes为Base62格式的bytes
|
byte[] |
encode(byte[] data,
boolean useInverted)
编码指定消息bytes为Base62格式的bytes
|
public static Base62Codec INSTANCE
public byte[] encode(byte[] data)
public byte[] encode(byte[] data, boolean useInverted)
data
- 被编码的消息useInverted
- 是否使用反转风格,即将GMP风格中的大小写做转换public byte[] decode(byte[] encoded)
public byte[] decode(byte[] encoded, boolean useInverted)
encoded
- Base62内容useInverted
- 是否使用反转风格,即将GMP风格中的大小写做转换Copyright © 2024. All rights reserved.