Here you can find the source of md5Encode(String inStr)
Parameter | Description |
---|---|
inStr | a parameter |
public static String md5Encode(String inStr)
//package com.java2s; //License from project: Open Source License import java.security.MessageDigest; public class Main { /**/*from ww w . ja v a 2 s .c o m*/ * MD5 generate 32 chars. * * @param inStr * @return */ public static String md5Encode(String inStr) { MessageDigest md5 = null; try { md5 = MessageDigest.getInstance("MD5"); byte[] byteArray = inStr.getBytes("UTF-8"); byte[] md5Bytes = md5.digest(byteArray); StringBuffer hexValue = new StringBuffer(); for (int i = 0; i < md5Bytes.length; i++) { int val = ((int) md5Bytes[i]) & 0xff; if (val < 16) { hexValue.append("0"); } hexValue.append(Integer.toHexString(val)); } return hexValue.toString(); } catch (Exception e) { e.printStackTrace(); return ""; } } }