I have one file created by 7zip program. I used deflate method to compressed it. Now I want to create the same archive (with the same MD5sum) in java. When I create zip file I used the algorithm that I found on the Internet for example http://www.kodejava.org/examples/119.html but when I created zip file with this method the compressed size is higher than size of the uncompressed file so what is going on ?!? This isn't a very useful compression. So how I can created zip file exactly with the same zip file that I created with 7zip program ? If it helps I have all information about zip file that I created in 7zip program. thx for advise.
|
//simplified code for zip creation in java by Nishanth Thomas -Insolutions Global Bangalore
|
||||
|
|
|
Just to clarify, you used the ZIP algorithm in 7zip for your original? Also 7zip claims to have a 2-10% better compression ratio than other vendors. I would venture a guess that the ZIP algorithm built into Java is not nearly as optimized as the one in 7zip. Your best best is to invoke 7zip from the command line if you want a similarly compressed file. Are you trying to unpack a ZIP file, change a file within it, then re-compress it so that it has the same MD5 hash? Hashes are meant to prevent you from doing that. |
|||||||||
|
|
ZipOutputStream has few methods to tune compression: public void setMethod(int method)
public void setLevel(int level)
When you add after something like:
does not it improve your compression? |
|||
|
|
To generate two identical zip files (including identical md5sum) from the same source file, I would recommend using the same zip utility -- either always use the same Java program, or always use 7zip. The 7zip utility for instance has a lot of options -- many of which are simply defaults that can be customized (or differ between releases?) -- and any Java zip implementation would have to also set these options explicitly. If your Java app can simply invoke an external "7z" program, you'll probably get better performance anyway that a custom Java zip implementation. (This is also a good example of a map-reduce problem where you can easily scale out the implementation.) But the main issue you will run into if you have a server-side generated zip file and a client-side generated zip file is that the zip file stores two things in addition to just the original file: (1) the file name, and (2) the file timestamp. If either of these have changed, then the resulting zip file will have a different md5sum:
But, using "cp -p" (preserve timestamp):
You'll find the same problem with differing filenames and paths, even when the files inside the zip are identical. |
|||
|
|
|
Here is a function that you pass the absolute path it will create a zip file with the same name as the directory (under which you want zip of all the sub folder and files, everything !!) and return true on success and false on exception if any.
|
|||
|
|
|
"Are you trying to unpack a ZIP file, change a file within it, then re-compress it so that it has the same MD5 hash? Hashes are meant to prevent you from doing that. " something similar. I have one zip file on the server side and one file on the client side. Client send name of the file on server. Server return MD5 of the file. Client compare client's zip file MD5 and server's zip file MD5. If it is different server starts sending name and crc. If it is different client sent flag that it is different and server send the content of this file to the client. Now when client has all file that changed. Unzip his zip file replace changed file and zip it again. Now all zip file should have the same MD5 because all zip file has the same content (I compare it with program called UltraCompareProfesional content are the same but binary of this files are different) but they havent got the same MD5 so when client want update his zip file again it start the same process but without sending any entries of zip because entry in zip file has the same crc. PS: sorry for my bad English |
|||
|
|