摘要: public static String md5(String string) { byte[] hash; try { hash = MessageDigest.getInstance("MD5").digest(string.getBytes("UTF-8")); } catch (NoSuchAlgorithmException e) { ... 阅读全文
posted @ 2016-09-02 16:21 毕哥 阅读(221) 评论(0) 推荐(0) 编辑