解决AES解密返回的字符串乱码问题:

byte[] decryptBytes = cipher.doFinal(encryptBytes);  
String result = new String(decryptBytes,"utf-8");