Is there any way to get the md5sum
of a file inside a zip file, without extracting the zip
?.
I have a zip
file containing directories plugins
, p2
and features
where plugins
directory contains lot of jar
files. How can I get the md5sum
of a given jar
file inside the plugins
directory ?. Thanks in advance.
Asked
Active
Viewed 1,279 times
3

Kasun Siyambalapitiya
- 3,956
- 8
- 38
- 58
-
Someone suggested the usage of Java Streams, [Example of md5 hashes without unpacking a zip](https://stackoverflow.com/questions/31267483/md5-hash-for-zip-files) – guido Aug 25 '17 at 10:59