解决AES解密返回的字符串乱码问题:
byte[] decryptBytes = cipher.doFinal(encryptBytes);
String result = new String(decryptBytes,"utf-8");
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
解决AES解密返回的字符串乱码问题:
byte[] decryptBytes = cipher.doFinal(encryptBytes);
String result = new String(decryptBytes,"utf-8");
暂无评论内容