使用 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中文網其他相關文章!