鸿蒙OS Base64
Base64
java.lang.Object
|---java.util.Base64
public class Base64
extends Object
此类仅包含用于获取 Base64 编码方案的编码器和解码器的静态方法。 此类的实现支持 RFC 4648 和 RFC 2045 中指定的以下 Base64 类型。
- Basic
使用 RFC 4648 和 RFC 2045 的表 1 中指定的“Base64 字母”进行编码和解码操作。 编码器不添加任何换行符(行分隔符)。 解码器拒绝包含 base64 字母表之外的字符的数据。
- URL and Filename safe
使用 RFC 4648 的表 2 中指定的“URL 和文件名安全 Base64 字母”进行编码和解码。 编码器不添加任何换行符(行分隔符)。 解码器拒绝包含 base64 字母表之外的字符的数据。
- MIME
使用 RFC 2045 的表 1 中指定的“Base64 字母”进行编码和解码操作。 编码后的输出必须以每行不超过 76 个字符的形式表示,并使用回车“\r”紧跟换行“\n”作为行分隔符。 没有行分隔符添加到编码输出的末尾。 在解码操作中忽略所有在 base64 字母表中找不到的行分隔符或其他字符。
除非另有说明,否则将 null 参数传递给此类的方法将导致抛出 NullPointerException。
嵌套类摘要
修饰符和类型 | 类 | 描述 |
---|---|---|
static class | Base64.Decoder | 此类实现了一个解码器,用于使用 RFC 4648 和 RFC 2045 中指定的 Base64 编码方案来解码字节数据。 |
static class | Base64.Encoder | 此类实现了一个编码器,用于使用 RFC 4648 和 RFC 2045 中指定的 Base64 编码方案对字节数据进行编码。 |
方法总结
修饰符和类型 | 方法 | 描述 |
---|---|---|
static Base64.Decoder | getDecoder() | 返回使用基本类型 base64 编码方案解码的解码器。 |
static Base64.Encoder | getEncoder() | 返回使用 Basic 类型 base64 编码方案进行编码的 Encoder。 |
static Base64.Decoder | getMimeDecoder() | 返回使用 MIME 类型 base64 解码方案解码的解码器。 |
static Base64.Encoder | getMimeEncoder() | 返回使用 MIME 类型 base64 编码方案进行编码的 Encoder。 |
static Base64.Encoder | getMimeEncoder(int lineLength, byte[] lineSeparator) | 返回一个使用 MIME 类型 base64 编码方案进行编码的编码器,该编码方案具有指定的行长和行分隔符。 |
static Base64.Decoder | getUrlDecoder() | 返回使用 URL 和文件名安全类型 base64 编码方案解码的解码器。 |
static Base64.Encoder | getUrlEncoder() | 返回使用 URL 和 Filename 安全类型 base64 编码方案进行编码的 Encoder。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
方法详情
getEncoder
public static Base64.Encoder getEncoder()
返回使用 Basic 类型 base64 编码方案进行编码的 Encoder。
返回:
Base64 编码器。
getUrlEncoder
public static Base64.Encoder getUrlEncoder()
返回使用 URL 和 Filename 安全类型 base64 编码方案进行编码的 Encoder。
返回:
Base64 编码器。
getMimeEncoder
public static Base64.Encoder getMimeEncoder()
返回使用 MIME 类型 base64 编码方案进行编码的 Encoder。
返回:
Base64 编码器。
getMimeEncoder
public static Base64.Encoder getMimeEncoder(int lineLength, byte[] lineSeparator)
返回一个使用 MIME 类型 base64 编码方案进行编码的编码器,该编码方案具有指定的行长和行分隔符。
参数:
参数名称 | 参数描述 |
---|---|
lineLength | 每条输出线的长度(四舍五入到最接近的 4 倍数)。 如果 lineLength <= 0 输出将不会以行分隔 |
lineSeparator | 每个输出行的行分隔符 |
返回:
Base64 编码器。
Throws:
Throw名称 | Throw描述 |
---|---|
IllegalArgumentException | 如果 lineSeparator 包含 RFC 2045 的表 1 中指定的任何“The Base64 Alphabet”字符。 |
getDecoder
public static Base64.Decoder getDecoder()
返回使用基本类型 base64 编码方案解码的解码器。
返回:
Base64 解码器。
getUrlDecoder
public static Base64.Decoder getUrlDecoder()
返回使用 URL 和文件名安全类型 base64 编码方案解码的解码器。
返回:
Base64 解码器。
getMimeDecoder
public static Base64.Decoder getMimeDecoder()
返回使用 MIME 类型 base64 解码方案解码的解码器。
返回:
Base64 解码器。
更多建议: