MessageDigest

Generate a File Checksum value in Java

In this tutorial we are going to see how to generate a file’s Checksum value in Java using the SHA-1 hash function. If you are working on your applications security specs it might be useful to consider using checksums to improve the security and integrity of file transfer or file sharing actions.

In short, the basic steps one should take in order to calculate the checksum value of a file are:

  • Create an MessageDigest instance with the SHA-1 function using MessageDigest.getInstance("SHA1") method.
  • Open and read the file using a FileInputStream.
  • Update the MessaDigest with the new bytes you read from the file using MessageDigest.update method
  • Then use a StringBuffer to convert and print the MessageDigest in hex representation.

Let’s take a look at the code:

package com.javacodegeeks.java.core;

import java.io.FileInputStream;
import java.security.MessageDigest;

public class FileCheckSumExample {

	public static void main(String args[]) throws Exception {

		String filepath = "C:\\Users\\nikos7\\Desktop\\output.txt";

		MessageDigest messageDigest = MessageDigest.getInstance("SHA1");
		
		FileInputStream fileInput = new FileInputStream(filepath);
		byte[] dataBytes = new byte[1024];

		int bytesRead = 0;

		while ((bytesRead = fileInput.read(dataBytes)) != -1) {
			messageDigest.update(dataBytes, 0, bytesRead);
		}
		

		byte[] digestBytes = messageDigest.digest();

		StringBuffer sb = new StringBuffer("");
		
		for (int i = 0; i < digestBytes.length; i++) {
			sb.append(Integer.toString((digestBytes[i] & 0xff) + 0x100, 16).substring(1));
		}

		System.out.println("Checksum for the File: " + sb.toString());
		
		fileInput.close();

	}
}

Output

Checksum for the File: 89168dc12b380ab3c84917bc5a8a6c6e9452da1f

 
This was an example on how to generate the checksum value of a File in Java.

Want to know how to develop your skillset to become a Java Rockstar?

Join our newsletter to start rocking!

To get you started we give you our best selling eBooks for FREE!

 

1. JPA Mini Book

2. JVM Troubleshooting Guide

3. JUnit Tutorial for Unit Testing

4. Java Annotations Tutorial

5. Java Interview Questions

6. Spring Interview Questions

7. Android UI Design

 

and many more ....

 

Receive Java & Developer job alerts in your Area

I have read and agree to the terms & conditions

 

Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button