.zip file created by Java doesn't support Chin

2020-04-16 05:28发布

I want to create a .zip file using Java(jdk, ant.jar or commons-compress).

But if the ZipEntry's name contains non-English(eg. Chinese, Japanese), it will display unreadable code in WinRAR or Windows Compress(commons-compress display correctly in WinRAR).

Who can help me!!!

3条回答
姐就是有狂的资本
2楼-- · 2020-04-16 05:33

You have hit one of the Top 25 java bug.

Good news is this is already resolved. Bad news it it is fixed only in JDK7. See this entry for details.

Alternativlly, you can use Arcmexer (readonly).

查看更多
我命由我不由天
3楼-- · 2020-04-16 05:43

try this by using apache commons compress,

import java.io.*;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream;
public class ZipFiles {  
   public static void main(String[] args) throws Exception{
       ZipArchiveOutputStream zipOut = new ZipArchiveOutputStream(new FileOutputStream("测试.zip"));
       zipOut.setEncoding("Cp437"); // This should handle your "special" characters
       zipOut.setFallbackToUTF8(true); // For "unknown" characters!
       zipOut.setUseLanguageEncodingFlag(true);                               
       zipOut.setCreateUnicodeExtraFields(
       ZipArchiveOutputStream.UnicodeExtraFieldPolicy.NOT_ENCODEABLE);
       zipOut.putArchiveEntry(new ZipArchiveEntry("测试.xml"));
       zipOut.putArchiveEntry(new ZipArchiveEntry("test.xml"));
       zipOut.closeArchiveEntry();
       zipOut.flush();
       zipOut.close();
   }
}
查看更多
够拽才男人
4楼-- · 2020-04-16 05:56

Take a look to 7-Zip-JBinding it's a Java wrapper for 7zip.

查看更多
登录 后发表回答