I have a file e.g. test.zip. If I use a ZIP-tool like winrar, it\'s easy to extract (unzip test.zip to test.csv). But test.csv is not in UTF8 format. My problem here is, whe
No, zip files are not just for UTF-8 data. Zip files don't try to interpret the data within the files at all, and neither does the Java API.
There may be issues around non-ASCII names of files, but the file contents themselves shouldn't be a problem at all. In your case, it looks like the name of the file is just test.zip, so you shouldn't be running into any name encoding issues.
If the file can't be opened, then it sounds like you've got a different problem. Are you sure the file exists where you expect it to be?