Tagged articles
2 articles
Page 1 of 1
Programmer DD
Programmer DD
Dec 4, 2021 · Fundamentals

How to Prevent Duplicate File Uploads with Reliable Hash Checks in Java

This article explains why using only file name and size to detect duplicate uploads is unreliable, demonstrates how to compute reliable file checksums in Java, and shows through experiments that identical content yields identical hashes regardless of name or type, providing a robust deduplication solution.

Hashingbackend fundamentalsduplicate detection
0 likes · 7 min read
How to Prevent Duplicate File Uploads with Reliable Hash Checks in Java