MD5加密工具类MD5Utils

1.使用自定义工具类MD5Utils

package com.utils;

import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class MD5Utils {
    public static String toMD5(String plainText) {
        byte[] secretBytes = null;
        try {
            secretBytes = MessageDigest.getInstance("md5").digest(
                    plainText.getBytes());
        } catch (NoSuchAlgorithmException e) {
            throw new RuntimeException("没有md5这个算法!");
        }
        String md5code = new BigInteger(1, secretBytes).toString(16);// 16进制数字
        // 如果生成数字未满32位,需要前面补0
        for (int i = 0; i < 32 - md5code.length(); i++) {
            md5code = "0" + md5code;
        }
        return md5code;
    }
}
String  md5=MD5Utils.toMD5("123456");

2. 使用commons-codec

  • jar包下载http://commons.apache.org/proper/commons-codec/download_codec.cgi
String  md5=DigestUtils.md5Hex("123456");

你可能感兴趣的:(#,Java,SE,Utils)