import java.security.MessageDigest;public class base64md5 {
  private char hexDigits[] = {
      '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
      'a', 'b', 'c', 'd', 'e', 'f'};
   
  public String getMd5(String s) { //将 字符串 s 进行MD5编码
    try {
      byte[] strTemp = s.getBytes();
      MessageDigest messageDigest = MessageDigest.getInstance("MD5");
      messageDigest.update(strTemp);
      byte[] md = messageDigest.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];
      }
      return new String(str);
    }
    catch (Exception e) {
      return null;
    }  }}
提问前请记着先搜索!!!!!!!!!!!!!!!!!