因爲項目中須要使用文件作備份,而且要提供備份文件的下載功能。備份文件體積較大,爲確保下載後的文件與原文件一致,須要提供文件完整性校驗。java
網上有這麼多此類文章,其中很多使用到了apache
org.apache.commons.codec.digest.DigestUtils
包中的方法,可是又本身作了大文件的拆分及獲取相應校驗碼的轉換。測試
DigestUtils 包已經提供了爲文件流生成校驗碼的功能,能夠直接調用。經測試10幾G的文件在30秒內可完成計算。spa
(網上提供的一些本身拆分大文件的示例,文件較小時結果正確,文件較大時結果就不太可靠了)code
實現步驟以下:xml
<dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.12</version> </dependency>
package file.integrity.check; import org.apache.commons.codec.digest.DigestUtils; import java.io.File; import java.io.FileInputStream; public class Application { public static void main(String[] args) throws Exception { File file = new File("/path/filename"); FileInputStream fileInputStream = new FileInputStream(file); String hex = DigestUtils.sha512Hex(fileInputStream); System.out.println(hex); } }
import org.apache.commons.codec.digest.DigestUtils; import static org.apache.commons.codec.digest.MessageDigestAlgorithms.SHA_512; import java.io.File; public class Application { public static void main(String[] args) throws Exception { File file = new File("/path/filename"); String hex = new DigestUtils(SHA_512).digestAsHex(file); System.out.println(hex); } }