java如何获取文件hash值

avatar
作者
筋斗云
阅读量:0

在Java中,你可以使用MessageDigest类来获取文件的哈希值。以下是一个示例,展示了如何使用SHA-256算法获取文件的哈希值:

import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException;  public class FileHash {     public static void main(String[] args) {         String filePath = "path/to/your/file";         String hash = getFileHash(filePath, "SHA-256");         System.out.println("文件哈希值: " + hash);     }      public static String getFileHash(String filePath, String algorithm) {         try {             MessageDigest md = MessageDigest.getInstance(algorithm);             File file = new File(filePath);             FileInputStream fis = new FileInputStream(file);             byte[] dataBytes = new byte[1024];             int bytesRead;              while ((bytesRead = fis.read(dataBytes)) != -1) {                 md.update(dataBytes, 0, bytesRead);             }              byte[] digestBytes = md.digest();             StringBuilder sb = new StringBuilder();             for (byte b : digestBytes) {                 sb.append(String.format("%02x", b));             }              return sb.toString();         } catch (NoSuchAlgorithmException | IOException e) {             e.printStackTrace();             return null;         }     } } 

path/to/your/file替换为你要计算哈希值的文件路径。你还可以通过更改algorithm参数来使用其他哈希算法,例如MD5SHA-1

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!