关于MD5加密同一个字符串调用方式不同,返回密文不同。见鬼啦!!!!!
这是MAIN方法请求调用加密方法返回的密文是:c4e479cfc417f1dfc4853be31523d1bf
public static void main(String[] args) {
String name = "深圳市";
String password = "963963";
String md5Value = MyUtils.getMD5(name+"#"+password);
System.out.println(md5Value);
}
这是前端请求Action调用加密方法返回的密文是:
274ff6824a5efe75314cdc6848831c66
public ActionForward test1(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
String name = "深圳市";
String password = "963963";
String md5Value = MyUtils.getMD5(name+"#"+password);
System.out.println(md5Value);
return null;
}
这是md5加密方法:
public static String getMD5(String x) {
String s = null;
char hexDigits[] = { // 用来将字节转换成 16 进制表示的字符
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
try
{
java.security.MessageDigest md = java.security.MessageDigest.getInstance( "MD5" );
md.update( x.getBytes() );
byte tmp[] = md.digest(); // MD5 的计算结果是一个 128 位的长整数,
// 用字节表示就是 16 个字节
char str[] = new char[16 * 2]; // 每个字节用 16 进制表示的话,使用两个字符,
// 所以表示成 16 进制需要 32 个字符
int k = 0; // 表示转换结果中对应的字符位置
for (int i = 0; i < 16; i++) { // 从第一个字节开始,对 MD5 的每一个字节
// 转换成 16 进制字符的转换
byte byte0 = tmp[i]; // 取第 i 个字节
str[k++] = hexDigits[byte0