Class Base62Encoder
java.lang.Object
org.miaixz.bus.core.codec.binary.encoder.Base62Encoder
- All Implemented Interfaces:
Encoder<byte[],byte[]>
Base62编码器
- Since:
- Java 17+
- Author:
- Kimi Liu
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final byte[]GMP风格static Base62EncoderGMP风格编码器static final byte[]反转风格,即将GMP风格中的大小写做转换static Base62Encoder反转风格,即将GMP风格中的大小写做转换编码器 -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
GMP
public static final byte[] GMPGMP风格 -
INVERTED
public static final byte[] INVERTED反转风格,即将GMP风格中的大小写做转换 -
GMP_ENCODER
GMP风格编码器 -
INVERTED_ENCODER
反转风格,即将GMP风格中的大小写做转换编码器
-
-
Constructor Details
-
Base62Encoder
public Base62Encoder(byte[] alphabet) 构造- Parameters:
alphabet- 字符表
-
-
Method Details