Here you can find the source of getMD5Str(String str)
public static String getMD5Str(String str)
//package com.java2s; import java.io.*; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class Main { public static String getMD5Str(String str) { MessageDigest messageDigest = null; try {/* w ww . ja va2 s. c om*/ messageDigest = MessageDigest.getInstance("MD5"); messageDigest.reset(); messageDigest.update(str.getBytes("UTF-8")); } catch (NoSuchAlgorithmException e) { return null; } catch (UnsupportedEncodingException e) { e.printStackTrace(); return null; } byte[] byteArray = messageDigest.digest(); StringBuffer md5StrBuff = new StringBuffer(); for (int i = 0; i < byteArray.length; i++) { if (Integer.toHexString(0xFF & byteArray[i]).length() == 1) md5StrBuff.append("0").append( Integer.toHexString(0xFF & byteArray[i])); else md5StrBuff.append(Integer.toHexString(0xFF & byteArray[i])); } return md5StrBuff.toString(); } }