我想得到一个文件目录的MD5校验和,我已经获得了一个文件的算法,但是当我将它用于目录时它会产生null。如何快速获得校验和。 以下是我对文件的算法(从匿名stackoverflower编辑)。
public String fileToMD5(String filePath) {
InputStream inputStream = null;
try {
inputStream = new FileInputStream(filePath); // Create an FileInputStream instance according to the filepath
byte[] buffer = new byte[1024]; // The buffer to read the file
MessageDigest digest = MessageDigest.getInstance("MD5"); // Get a MD5 instance
int numRead = 0; // Record how many bytes have been read
while (numRead != -1) {
numRead = inputStream.read(buffer);
if (numRead > 0)
digest.update(buffer, 0, numRead); // Update the digest
}
byte [] md5Bytes = digest.digest(); // Complete the hash computing
return convertHashToString(md5Bytes); // Call the function to convert to hex digits
} catch (Exception e) {
return null;
} finally {
if (inputStream != null) {
try {
inputStream.close(); // Close the InputStream
} catch (Exception e) { }
}
}
}
我搜索了一些解决方案:
我想知道是否有一些方便的解决方案。谢谢你提前。
答案 0 :(得分:1)
我刚刚做了这个,但是我做了一个我知道将要平坦的目录(没有子目录)
这有影响,如果要更改任何文件,这个“目录”md5也会改变。
我知道还有其他方法,包括你提到的方式(比如拉链),但这是我选择的路线。
编辑:我必须得到一个文件夹并且它是子文件夹md5,这就是我完成它的方式。
注意:我使用Google的Guava lib进行散列
注意:编写代码的方式如果目录中文件的顺序发生变化,它将会改变
public static String generateMD5(String dir)
{
File[] files = new File(dir).listFiles();
return Hashing.md5().hashString(expandFiles(files, ""), Charsets.UTF_8).toString();
}
/* Recursive folder expansion */
public static String expandFiles(File[] dirFiles, String md5in)
{
String md5out = md5in;
for(File file : dirFiles)
{
if(file.isHidden()) //For my uses, I wanted to skip any hidden files (.DS_Store was being a problem on a mac)
{
System.out.println("We have skipped this hidden file: " + file.getName());
}
else if (file.isDirectory())
{
System.out.println("We are entering a directory recursively: " + file.getName());
md5out += Hashing.md5().hashString(expandFiles(file.listFiles(), md5out), Charsets.UTF_8).toString(); //Recursive call, we have found a subdirectory.
System.out.println("We have gotten the md5 of " + file.getName() + " It is " + md5out);
}
else //We found a file
{
HashCode md5 = null;
try
{
md5 = Files.hash(file, Hashing.md5());
}
catch (IOException e)
{
e.printStackTrace();
}
md5out += md5.toString();
System.out.println("We have just gotten the md5 of a specific file: " + file.getName() + ". This file has the md5 of " + md5out);
}
}
return md5out;
答案 1 :(得分:1)
据我所知,目前无法获得目录的校验和。
答案 2 :(得分:0)
您需要: 1.计算目录中所有文件的md5 2.从1步计算结果的md5。
这是给你的
public static String dirMD5(String dir)
{
String md5 = "";
File folder = new File(dir);
File[] files = folder.listFiles();
for (int i=0; i<files.length; i++)
{
md5 = md5 + getMd5OfFile(files[i].toString());
}
md5 = GetMD5HashOfString(md5);
return md5;
}
public static String getMd5OfFile(String filePath)
{
String returnVal = "";
try
{
InputStream input = new FileInputStream(filePath);
byte[] buffer = new byte[1024];
MessageDigest md5Hash = MessageDigest.getInstance("MD5");
int numRead = 0;
while (numRead != -1)
{
numRead = input.read(buffer);
if (numRead > 0)
{
md5Hash.update(buffer, 0, numRead);
}
}
input.close();
byte [] md5Bytes = md5Hash.digest();
for (int i=0; i < md5Bytes.length; i++)
{
returnVal += Integer.toString( ( md5Bytes[i] & 0xff ) + 0x100, 16).substring( 1 );
}
}
catch(Throwable t) {t.printStackTrace();}
return returnVal.toUpperCase();
}
public static String GetMD5HashOfString (String str)
{
MessageDigest md5 ;
StringBuffer hexString = new StringBuffer();
try
{
md5 = MessageDigest.getInstance("md5");
md5.reset();
md5.update(str.getBytes());
byte messageDigest[] = md5.digest();
for (int i = 0; i < messageDigest.length; i++)
{
hexString.append(Integer.toHexString((0xF0 & messageDigest[i])>>4));
hexString.append(Integer.toHexString (0x0F & messageDigest[i]));
}
}
catch (Throwable t) {History.Error(t);}
return hexString.toString();
}