It is harder than i thought to create a simple Zip Archive from within Java that contains entries with unicode names in it.
I’m actually to lazy to read all the specs, but it says something that the entries in a zip archive are encoded using “Cp437”. The buildin Java compressing api has nothing to offer for setting the encoding so i tried Apache Commons Compress.
The manual says the following about interop :
For maximum interop it is probably best to set the encoding to UTF-8, enable the language encoding flag and create Unicode extra fields when writing ZIPs. Such archives should be extracted correctly by java.util.zip, 7Zip, WinZIP, PKWARE tools and most likely InfoZIP tools. They will be unusable with Windows’ “compressed folders” feature and bigger than archives without the Unicode extra fields, though.
That didn’t work for me.
After some cursing, this is my solution:
final ZipArchiveOutputStream zout = new ZipArchiveOutputStream(new BufferedOutputStream(new FileOutputStream(fc.getSelectedFile()))); zout.setEncoding("Cp437"); zout.setFallbackToUTF8(true); zout.setUseLanguageEncodingFlag(true); zout.setCreateUnicodeExtraFields(ZipArchiveOutputStream.UnicodeExtraFieldPolicy.NOT_ENCODEABLE); |
I specifying explicitly the encoding but instead of using utf-8, which didn’t work for my utf-8 strings (wtf??), i’m using the Cp437 from the specs and some other magic options and it works for me in 7zip, WinZip and even Windows’ “compressed folders”.
Edit: Unfortunately, in Mac OS X’s Unzip utility, the non Cp437 are broken. If anyone has a good idea, feel free to leave a comment.
12 comments
Hello,
Your post has been very useful to me. My zip files now have proper filename encoding. Thanks for sharing your knowledge.
You’re very welcome!
Thank you very much my friend. I have spent too much time to solve my encoding filename problem.
Congratulations.
Thank your for your kind comment 🙂
it does not seem to work for me, would you consider publishing your full code?
yogav: This is the full code for configuring the outputstream. Everything else is in the api.
Hi! Thank you for this piece of code, I’m having the same problem (encoding localized files in Zip archives), and I saw you mentioned your solution working with Windows’ Compressed Folders.
Sadly this is not the case with my files, after using your code, the file “ęóąśłżźćń.xlsx” still decompresses as “-Ö+¦-à+¢+é+++¦-ç+ä.xlsx”.
Would you happen to have any idea how to address this, or is this reproducible by you?
Hi,
sadly i can only confirm your findings with the given filename.
Sorry.
Thank you for trying and another thank you for replying this quickly 🙂
Have a nice day!
You’re welcome! I can only guess that i just tried öäü and the like which i needed 5 years ago.
You too!
I tried this solution but now I cannot even open the zip file.
Also will this work in both Windows and Mac?
Currently I use java output stream and with that my Mac book zip extractor shows the names fine but it is the windows who messes up with the file name
It shows error while using this code. Can you post the full code?
3 Trackbacks/Pingbacks
[…] utilizar Apache Commons Compress. Michael Simons escribió este bonito fragmento de […]
[…] may use Apache Commons Compress. Michael Simons wrote this nice piece of […]
[…] may use Apache Commons Compress. Michael Simons wrote this nice piece of […]
Post a Comment