I\'m trying to create a Zip file from .Net that can be read from Java code.
I\'ve used SharpZipLib to create the Zip file but also if the file generated is valid acc
I had the same problem creating zips with SharpZipLib (latest version) and extracting with java.utils.zip.
Here is what fixed the problem for me. I had to force the exclusion of the zip64 usage:
ZipOutputStream s = new ZipOutputStream(File.Create(someZipFileName)) s.UseZip64 = UseZip64.Off;