我正在尝试从服务器匹配下载文件的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
答案 0 :(得分:1)
BigInteger.toString方法将逃避前导0,因为它们并不重要。