ZipArchiveEntry charset-encoding error

Ortolig

New Member
I have to create a file zip with \[code\]apache-commons-compress-1.x\[/code\] API. I have used the following code:\[code\]File fileZip = new File("D:\\file.zip");ZipEncoding zipEncoding = ZipEncodingHelper.getZipEncoding("UTF8");ZipArchiveOutputStream zipOut = new ZipArchiveOutputStream(fileZip);zipOut.setEncoding("UTF-8");File entryFile = new File("D:\\attivit
 
Top