我正在尝试匹配从服务器下载的文件的 md5sum。仅当总和匹配时才会继续处理。
try {
MessageDigest digest = MessageDigest.getInstance("MD5");
File f = new File(fileName);
InputStream is = new FileInputStream(f);
byte[] buffer = new byte[8192];
int read = 0;
while( (read = is.read(buffer)) > 0) {
digest.update(buffer, 0, read);
}
is.close();
byte[] md5sum = digest.digest();
BigInteger bigInt = new BigInteger(1, md5sum);
output = bigInt.toString(16);
System.out.println("MD5: " + output);
} catch(IOException e) {
throw new RuntimeException("Unable to process file for MD5", e);
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
上面的代码每次都没有为某些文件正确提供 md5sum。
当我去控制台并检查md5sum <filename>
md5sum 与服务器中的相同时。但是,当从代码中计算出相同的值时,它会产生不同的结果。
下载文件的 vimdiff 没有提供任何差异。下载后文件正确。
我在上面的代码中看不到问题。
我正在尝试更改缓冲区大小。但没有运气,所以我猜这不是因为缓冲区大小等。
byte[] buffer = new byte[8192];
问候
Dheeraj Joshi