Java获取文件的hash值(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
总结
到此这篇关于Java获取文件的hash值(SHA256)两种方式的文章就介绍到这了,更多相关Java获取文件hash值内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!