赞
踩
偶遇此内容,记录一下
byte[] input= text.getBytes(StandardCharsets.UTF_8);
// 加密
byte[] encoded= Base64.getEncoder().encode(input);
return new String(encoded, StandardCharsets.UTF_8);
// 解密
byte[] decoded= Base64.getDecoder().decode(text);
return new String(decoded, StandardCharsets.UTF_8);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。