Description
ZipFile is faster than ZipInputStream because it doesn't read a stream, it directly calls native methods so it can be faster to separate both cases.
(JarFile and JarInputStream have of course the same behavior)
(on my computer JarFile is 10 times faster than JarInputStream to list files contained in a jar)