Skip to content

Instantly share code, notes, and snippets.

@ixqbar
Created August 28, 2015 01:53
Show Gist options
  • Save ixqbar/835f3fb9718ad01f00d3 to your computer and use it in GitHub Desktop.
Save ixqbar/835f3fb9718ad01f00d3 to your computer and use it in GitHub Desktop.
java md5sum file
import java.io.FileInputStream;
import java.security.MessageDigest;
public class TestCheckSum {
public static void main(String args[]) throws Exception {
String datafile = "c:\\INSTLOG.TXT";
MessageDigest md = MessageDigest.getInstance("SHA1");
FileInputStream fis = new FileInputStream(datafile);
byte[] dataBytes = new byte[1024];
int nread = 0;
while ((nread = fis.read(dataBytes)) != -1) {
md.update(dataBytes, 0, nread);
};
byte[] mdbytes = md.digest();
//convert the byte to hex format
StringBuffer sb = new StringBuffer("");
for (int i = 0; i < mdbytes.length; i++) {
sb.append(Integer.toString((mdbytes[i] & 0xff) + 0x100, 16).substring(1));
}
System.out.println("Digest(in hex format):: " + sb.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment