| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
9年前发布

java的md5加密算法代码

import java.io.File;  import java.io.FileInputStream;  import java.io.IOException;  import java.nio.MappedByteBuffer;  import java.nio.channels.FileChannel;  import java.security.MessageDigest;  public final class Md5Util {      private static final char hexDigits[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c',     'd', 'e', 'f'};      public static String encode(File file) {    FileInputStream in = null;    MessageDigest md5 = null;    try {     in = new FileInputStream(file);     FileChannel ch = in.getChannel();     MappedByteBuffer byteBuffer = ch.map(FileChannel.MapMode.READ_ONLY, 0, file.length());     md5 = MessageDigest.getInstance("MD5");     md5.update(byteBuffer);    } catch (Exception e) {     e.printStackTrace();    } finally {     try {      in.close();     } catch (IOException e) {      e.printStackTrace();     }    }    return toHex(md5.digest());   }   public static String encode(String arg) {    if (arg == null) {     arg = "";    }    MessageDigest md5 = null;    try {     md5 = MessageDigest.getInstance("MD5");     md5.update(arg.getBytes("UTF-8"));    } catch (Exception e) {     e.printStackTrace();    }    return toHex(md5.digest());   }   private static String toHex(byte[] bytes) {    StringBuffer str = new StringBuffer(32);    for (byte b : bytes) {     str.append(hexDigits[(b & 0xf0) >> 4]);     str.append(hexDigits[(b & 0x0f)]);    }    return str.toString();   }  }

来自: http://blog.csdn.net//u011067360/article/details/24417387

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1453126367823.html
加密/解密软件包