2012年12月25日
摘要: public static String MD5(String plainText){ String str = null; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(plainText.getBytes()); byte b[] = md.digest(); int i; StringBuffer buf = new StringBuffer(""); for (int offset = 0; offset < b.length; offset++) 阅读全文
posted @ 2012-12-25 11:50 lsl8966 阅读(374) 评论(0) 推荐(0) 编辑