Java examples for File Path IO:File Hash
get File SHA 256
// Licensed under the Apache License, Version 2.0 (the "License"); //package com.java2s; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.security.MessageDigest; public class Main { public static String getFileSHA256(File file) { String str = ""; try {//from w ww .ja va2s . c o m str = getHash(file, "SHA-256"); } catch (Exception e) { e.printStackTrace(); } return str; } private static String getHash(File file, String hashType) throws Exception { InputStream fis = new FileInputStream(file); byte buffer[] = new byte[1024]; MessageDigest md5 = MessageDigest.getInstance(hashType); for (int numRead = 0; (numRead = fis.read(buffer)) > 0;) { md5.update(buffer, 0, numRead); } fis.close(); return toHexString(md5.digest()); } private static String toHexString(byte b[]) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < b.length; i++) { sb.append(Integer.toHexString(b[i] & 0xFF)); } return sb.toString(); } }