赞
踩
Java实现BASE64编码和解码:
public static String base64Encode(String text) {
byte[] inputBytes = text.getBytes(StandardCharsets.UTF_8);
// 加密
byte[] encodedBytes = Base64.getEncoder().encode(inputBytes);
return new String(encodedBytes, StandardCharsets.UTF_8);
}
public static String base64Decode(String text) {
// 解密
byte[] decodedBytes = Base64.getDecoder().decode(text);
return new String(decodedBytes, StandardCharsets.UTF_8);
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。