public final static String MD5(String s)
{
log_exception.log_debug("需加密的数据:" + s);
char hexDigits[]={'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
try {
byte[] btInput = s.getBytes("UTF-8");
MessageDigest mdInst = MessageDigest.getInstance("MD5");
mdInst.update(btInput);
byte[] md = mdInst.digest();
int j = md.length;
char str[] = new char[j * 2];
int k = 0;
for (int i = 0; i < j; i++) {
byte byte0 = md[i];
str[k++] = hexDigits[byte0 >>> 4 & 0xf];
str[k++] = hexDigits[byte0 & 0xf];
}
String str1 = new String(str);
log_exception.log_debug("加密后的数据:" + str1);
return new String(str);
} catch (Exception e) {
e.printStackTrace();
return null;
}
}