使用 Base64 编码和解码字符串
尝试使用 Base64 编码和解码字符串时,您可能会遇到困难。可以优化提供的代码以确保成功编码和解码。
编码字符串:
解码字符串:
代码示例:
// Encoding String plaintext = "password"; byte[] bytes = plaintext.getBytes(StandardCharsets.UTF_8); String base64Encoded = Base64.encodeToString(bytes, Base64.DEFAULT); // Decoding byte[] decodedBytes = Base64.decode(base64Encoded, Base64.DEFAULT); String decodedText = new String(decodedBytes, StandardCharsets.UTF_8);
附加说明:
以上是如何使用Base64高效地对字符串进行编解码?的详细内容。更多信息请关注PHP中文网其他相关文章!