Java获取文件的hash值(SHA256)

您所在的位置:网站首页 java怎么查看日志文件 Java获取文件的hash值(SHA256)

Java获取文件的hash值(SHA256)

2023-07-08 02:18| 来源: 网络整理| 查看: 265

目录

简介

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

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

简介

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

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

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

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

/** * 计算SHA256哈希值 * @param filePath 文件路径 * @return 字节数组 * @throws IOException IO异常 * @throws NoSuchAlgorithmException NoSearch算法异常 */ public static byte[] calculateSHA256(String filePath) throws IOException, NoSuchAlgorithmException { MessageDigest digest = MessageDigest.getInstance("SHA-256"); //获取网络URL文件 InputStream fis2 = new URL(filePath).openStream(); //创建临时文件 File file = File.createTempFile(IdWorker.getIdStr(),""); FileUtil.writeFromStream(fis2,file); try ( FileInputStream fis = new FileInputStream(file); FileChannel channel = fis.getChannel(); DigestInputStream dis = new DigestInputStream(fis, digest)) { ByteBuffer buffer = ByteBuffer.allocate(8192); // 8 KB buffer while (channel.read(buffer) != -1) { buffer.flip(); digest.update(buffer); buffer.clear(); } return digest.digest(); } } /** * 将字节数组转换为String类型哈希值 * @param bytes 字节数组 * @return 哈希值 */ private static String bytesToHex(byte[] bytes) { StringBuilder result = new StringBuilder(); for (byte b : bytes) { result.append(String.format("%02x", b)); } return result.toString(); } public static void main(String[] args) { String filePath = "https://xxxxx/20230410/bfd71f584d9645b0a5e3d7a465119f0c.pdf"; try { byte[] sha256 = calculateSHA256(filePath); String sha256Hex = bytesToHex(sha256); System.out.println("SHA256: " + sha256Hex); } catch (IOException | NoSuchAlgorithmException e) { e.printStackTrace(); } }

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

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

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

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

/** * 计算SHA256哈希值 * @param filePath 文件路径 * @return 字节数组 * @throws IOException IO异常 * @throws NoSuchAlgorithmException NoSearch算法异常 */ public static byte[] calculateSHA256(String filePath) throws IOException, NoSuchAlgorithmException { MessageDigest digest = MessageDigest.getInstance("SHA-256"); try ( FileInputStream fis = new FileInputStream(filePath); FileChannel channel = fis.getChannel(); DigestInputStream dis = new DigestInputStream(fis, digest)) { ByteBuffer buffer = ByteBuffer.allocate(8192); // 8 KB buffer while (channel.read(buffer) != -1) { buffer.flip(); digest.update(buffer); buffer.clear(); } return digest.digest(); } } /** * 将字节数组转换为String类型哈希值 * @param bytes 字节数组 * @return 哈希值 */ private static String bytesToHex(byte[] bytes) { StringBuilder result = new StringBuilder(); for (byte b : bytes) { result.append(String.format("%02x", b)); } return result.toString(); } public static void main(String[] args) { String filePath = "D:\\bfd71f584d9645b0a5e3d7a465119f0c.pdf"; try { byte[] sha256 = calculateSHA256(filePath); String sha256Hex = bytesToHex(sha256); System.out.println("SHA256: " + sha256Hex); } catch (IOException | NoSuchAlgorithmException e) { e.printStackTrace(); } }

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

SHA256: cffebd06c485d17b8a93308e1e39cc4c1636444b762c9c153ba8b29022392b98

作者:筱白爱学习!!

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



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3