Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to compress a file that has unicode characters in it.

when im using winzip, nor winrar and window "compressed folder" view it normally. when im using winrar, both winzip and winrar can view it, but not windows "compressed folder".

i tried many c# classes and change many encodings with no success. i also tried apache common compressor with java and had no luck also.

it seems like windows "compressed folder" just cant view unicode characters in file names, but im asking you, do you know a way to encode a unicoded file in a zip so it will open in windows compressed folder properly?

thank you in advanced for any help.

share|improve this question
There are different ways to encode filenames in zip files, no single one is standardized. For zip files to be used by java, the file names have to be encoded in UTF-8 (likes the jar tool does). I have no idea what encoding the compressed folder view wants. Best bet still is not to use non-ASCII-characters in file names, sadly. – PaĆ­lo Ebermann Feb 13 '11 at 23:24

2 Answers

This scenario will likely not work. The ZIP functionality built into Windows has a number of well-known Unicode problems. These are described here.

share|improve this answer

Use 7-Zip to create the ZIP archive. It's free Open Source from http://7-zip.org

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.