首页>代码>ssm开发大学校园兼职平台项目(可以作为毕设)>/moonlighting/src/com/work/common/utils/MD5Util.java
package com.work.common.utils;

import java.security.MessageDigest;
import java.util.UUID;

public class MD5Util {

	private static String byteArrayToHexString(byte b[]) {
		StringBuffer resultSb = new StringBuffer();
		for (int i = 0; i < b.length; i++)
			resultSb.append(byteToHexString(b[i]));

		return resultSb.toString();
	}

	private static String byteToHexString(byte b) {
		int n = b;
		if (n < 0)
			n += 256;
		int d1 = n / 16;
		int d2 = n % 16;
		return hexDigits[d1] + hexDigits[d2];
	}

	public static String MD5Encode(String origin, String charsetname) {
		String resultString = null;
		try {
			resultString = new String(origin);
			MessageDigest md = MessageDigest.getInstance("MD5");
			if (charsetname == null || "".equals(charsetname))
				resultString = byteArrayToHexString(md.digest(resultString
						.getBytes()));
			else
				resultString = byteArrayToHexString(md.digest(resultString
						.getBytes(charsetname)));
		} catch (Exception exception) {
		}
		return resultString;
	}
	/**
	 * 获得16个长度的十六进制的UUID
	 * 
	 * @return UUID
	 */
	public static String get16UUID() {
		UUID id = UUID.randomUUID();
		String[] idd = id.toString().split("-");
		return idd[0] + idd[1] + idd[2];
	}

	private static final String hexDigits[] = { "0", "1", "2", "3", "4", "5",
			"6", "7", "8", "9", "a", "b", "c", "d", "e", "f" };
}
最近下载更多
bridge_44  LV2 10月28日
穿山甲1001  LV6 9月12日
TY0165  LV20 6月21日
yyhrhv  LV8 5月31日
吞吞吐吐她  LV6 4月21日
860421  LV3 4月18日
zolscy  LV12 3月24日
nyb4613  LV8 1月29日
最近浏览更多
shunlun8855  LV1 10月29日
bridge_44  LV2 10月28日
2483357520 10月19日
暂无贡献等级
zouzou123  LV3 10月10日
心灵123456 9月24日
暂无贡献等级
穿山甲1001  LV6 9月12日
oskenen  LV1 8月26日
chutianyu  LV4 6月30日
柳咪华沙  LV7 6月28日
grant1123  LV2 6月22日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友