package com.md5;

import java.security.MessageDigest;

public class MD5 {

	public static String md5(String text) {
		try {
			if (text == null)
				return null;

			MessageDigest md = MessageDigest.getInstance("MD5");

			md.update(text.getBytes("UTF-8"));

			byte b[] = md.digest();

			int i;

			StringBuffer buf = new StringBuffer("");
			for (int offset = 0; offset < b.length; offset++) {
				i = b[offset];
				if (i < 0)
					i += 256;
				if (i < 16)
					buf.append("0");
				buf.append(Integer.toHexString(i));
			}

			return buf.toString();

		} catch (Exception e) {

			e.printStackTrace();
		}

		return null;
	}
}
最近下载更多
香帅  LV1 2021年7月3日
ddy123  LV1 2021年6月3日
new_test_yang  LV1 2021年3月8日
ac993383685  LV1 2021年2月9日
Haven99999  LV1 2021年2月1日
polar小熊  LV2 2021年1月5日
cgjcgjcgj  LV1 2020年11月11日
sun_bo  LV1 2020年11月11日
wdy1024  LV1 2020年9月22日
陈先生007  LV1 2020年9月15日
最近浏览更多
吞吞吐吐她  LV6 3月28日
林间听风  LV10 2023年4月7日
crosa_Don  LV18 2023年2月26日
jinxiaoao  LV6 2021年12月29日
sure975 2021年11月23日
暂无贡献等级
420434200  LV2 2021年8月23日
xiaoyumao  LV2 2021年6月23日
ddy123  LV1 2021年6月3日
dengkaixing  LV2 2021年5月28日
zuidaima_liuzg  LV1 2021年5月13日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友