码迷,mamicode.com
首页 > 其他好文 > 详细

获取单个文件的MD5值

时间:2015-08-30 17:55:36      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:md5


基础知识:

  1. MessageDigest

  2. FileInputStream

  3. 技巧while((len=in.read(buffer,0,1024))!=-1){

    }

  4. BigInteger


public static String getFileMD5(File file) {
		if (!file.isFile()) {
			return null;
		}
		MessageDigest digest = null;
		FileInputStream in = null;
		byte buffer[] = new byte[1024];
		int len;
		try {
			digest = MessageDigest.getInstance("MD5");
			in = new FileInputStream(file);
			while ((len = in.read(buffer, 0, 1024)) != -1) {
				digest.update(buffer, 0, len);
			}
			in.close();
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
		BigInteger bigInt = new BigInteger(1, digest.digest());
		return bigInt.toString(16);
	}


































本文出自 “信息安全-数据库安全” 博客,请务必保留此出处http://fergusj.blog.51cto.com/8835051/1689700

获取单个文件的MD5值

标签:md5

原文地址:http://fergusj.blog.51cto.com/8835051/1689700

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!