在 Java 中将数据编码为 Base64
使用 Apache Commons 进行编码
在 Java 7 中, sun.misc.BASE64Encoder 类以前用于 Base64 编码的现在已弃用。要使用 Apache Commons 进行编码,请将导入替换为:
import org.apache.commons.codec.binary.Base64;
并使用 Base64 类,如下所示:
byte[] encodedBytes = Base64.encodeBase64("Test".getBytes());
使用 java 编码Java 8 中的 .util.Base64
Java 8 引入了java.util.Base64 用于 Base64 编码的包。使用以下命令导入:
import java.util.Base64;
然后使用 Base64 编码器和解码器静态方法:
byte[] encodedBytes = Base64.getEncoder().encode("Test".getBytes()); byte[] decodedBytes = Base64.getDecoder().decode(encodedBytes);
从字符串到字符串的直接编码
对字符串进行编码并获取编码后的字符串直接:
String encodeBytes = Base64.getEncoder().encodeToString((userName + ":" + password).getBytes());
关于 sun.misc 包的注意事项
建议避免使用 sun.misc 包中的类,因为它们可能在未来的 Java 版本中已被删除或修改其行为。
以上是如何在Java中将数据编码为Base64?的详细内容。更多信息请关注PHP中文网其他相关文章!