当前位置:   article > 正文

Java获取文件的hash值(SHA256)_java计算文件hash值

java计算文件hash值

目录

简介

获取网络文件的sha256值(方式一)

获取本地文件的sha256值(方式二)


简介

        在工作开发当中需求要通过文件的hash值比对文件是否被篡改过,于是通过使用了(sha256)hash值进行比对,因为对于任意长度的消息,SHA256都会产生一个256bit长的哈希值,通常用一个长度为64的十六进制字符串来表示。

获取网络文件的sha256值(方式一)

        首先通过InputStream获取网络URL文件,然后创建临时文件,再通过FileInputStream以字节流的方式逐块读取文件内容,然后通过DigestInputStream将读取的数据传递给MessageDigest来计算SHA256哈希值。这样可以避免将整个文件加载到内存中,而是通过缓冲区逐块处理文件内容。

JAVA代码如下:(文件地址自己改一下)

  1. /**
  2. * 计算SHA256哈希值
  3. * @param filePath 文件路径
  4. * @return 字节数组
  5. * @throws IOException IO异常
  6. * @throws NoSuchAlgorithmException NoSearch算法异常
  7. */
  8. public static byte[] calculateSHA256(String filePath) throws IOException, NoSuchAlgorithmException {
  9. MessageDigest digest = MessageDigest.getInstance("SHA-256");
  10. //获取网络URL文件
  11. InputStream fis2 = new URL(filePath).openStream();
  12. //创建临时文件
  13. File file = File.createTempFile(IdWorker.getIdStr(),"");
  14. FileUtil.writeFromStream(fis2,file);
  15. try (
  16. FileInputStream fis = new FileInputStream(file);
  17. FileChannel channel = fis.getChannel();
  18. DigestInputStream dis = new DigestInputStream(fis, digest)) {
  19. ByteBuffer buffer = ByteBuffer.allocate(8192); // 8 KB buffer
  20. while (channel.read(buffer) != -1) {
  21. buffer.flip();
  22. digest.update(buffer);
  23. buffer.clear();
  24. }
  25. return digest.digest();
  26. }
  27. }
  28. /**
  29. * 将字节数组转换为String类型哈希值
  30. * @param bytes 字节数组
  31. * @return 哈希值
  32. */
  33. private static String bytesToHex(byte[] bytes) {
  34. StringBuilder result = new StringBuilder();
  35. for (byte b : bytes) {
  36. result.append(String.format("%02x", b));
  37. }
  38. return result.toString();
  39. }
  40. public static void main(String[] args) {
  41. String filePath = "https://xxxxx/20230410/bfd71f584d9645b0a5e3d7a465119f0c.pdf";
  42. try {
  43. byte[] sha256 = calculateSHA256(filePath);
  44. String sha256Hex = bytesToHex(sha256);
  45. System.out.println("SHA256: " + sha256Hex);
  46. } catch (IOException | NoSuchAlgorithmException e) {
  47. e.printStackTrace();
  48. }
  49. }

响应结果:(这里的结果是我自己再测试的时候生成的)

SHA256: cffebd06c485d17b8a93308e1e39cc4c1636444b762c9c153ba8b29022392b98

获取本地文件的sha256值(方式二)

        通过FileInputStream以字节流的方式逐块读取文件内容,然后通过DigestInputStream将读取的数据传递给MessageDigest来计算SHA256哈希值。这样可以避免将整个文件加载到内存中,而是通过缓冲区逐块处理文件内容。

JAVA代码如下:(文件地址自己改一下)

  1. /**
  2. * 计算SHA256哈希值
  3. * @param filePath 文件路径
  4. * @return 字节数组
  5. * @throws IOException IO异常
  6. * @throws NoSuchAlgorithmException NoSearch算法异常
  7. */
  8. public static byte[] calculateSHA256(String filePath) throws IOException, NoSuchAlgorithmException {
  9. MessageDigest digest = MessageDigest.getInstance("SHA-256");
  10. try (
  11. FileInputStream fis = new FileInputStream(filePath);
  12. FileChannel channel = fis.getChannel();
  13. DigestInputStream dis = new DigestInputStream(fis, digest)) {
  14. ByteBuffer buffer = ByteBuffer.allocate(8192); // 8 KB buffer
  15. while (channel.read(buffer) != -1) {
  16. buffer.flip();
  17. digest.update(buffer);
  18. buffer.clear();
  19. }
  20. return digest.digest();
  21. }
  22. }
  23. /**
  24. * 将字节数组转换为String类型哈希值
  25. * @param bytes 字节数组
  26. * @return 哈希值
  27. */
  28. private static String bytesToHex(byte[] bytes) {
  29. StringBuilder result = new StringBuilder();
  30. for (byte b : bytes) {
  31. result.append(String.format("%02x", b));
  32. }
  33. return result.toString();
  34. }
  35. public static void main(String[] args) {
  36. String filePath = "D:\\bfd71f584d9645b0a5e3d7a465119f0c.pdf";
  37. try {
  38. byte[] sha256 = calculateSHA256(filePath);
  39. String sha256Hex = bytesToHex(sha256);
  40. System.out.println("SHA256: " + sha256Hex);
  41. } catch (IOException | NoSuchAlgorithmException e) {
  42. e.printStackTrace();
  43. }
  44. }

响应结果:(这里的结果是我自己再测试的时候生成的)

SHA256: cffebd06c485d17b8a93308e1e39cc4c1636444b762c9c153ba8b29022392b98


作者:筱白爱学习!!

欢迎关注转发评论点赞沟通,您的支持是筱白的动力!

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号