描述
Java自带的util的ZipFile解压含有中文名文件的zip会乱码和报错,因zip压缩编码不同导致;windows压缩一般是GBK编码,mac os和linux一般编码是utf-8,用不好统一解压编码.改成使用
引入jar
// An highlighted block
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.10</version>
</dependency>
代码
public static void unZip(File srcFile, String destDirPath) throws RuntimeException {
long start = ();
// 判断源文件是否存在
if (!()) {
throw new RuntimeException(() + "所指文件不存在");
}
// 开始解压
ZipFile zipFile = null;
try {
zipFile = new ZipFile(srcFile);
// zipFile = new ZipFile(srcFile, ("GBK")); //含有中文 使用才需要指定这个,后面即使指定了也还是有问题,所以放弃这个改成
Enumeration<?> entries = ();
while (()) {
ZipEntry entry = (ZipEntry) ();
("解压" + ());
// 如果是文件夹,就创建个文件夹
if (()) {
String dirPath = destDirPath + "/" + ();
File dir = new File(dirPath);
();
} else {
// 如果是文件,就先创建一个文件,然后用io流把内容copy过去
File targetFile = new File(destDirPath + "/" + ());
// 保证这个文件的父文件夹必须要存在
if (!().exists()) {
().mkdirs();
}
();
// 将压缩文件内容写入到这个文件中
InputStream is = (entry);
FileOutputStream fos = new FileOutputStream(targetFile);
int len;
byte[] buf = new byte[BUFFER_SIZE];
while ((len = (buf)) != -1) {
(buf, 0, len);
}
// 关流顺序,先打开的后关闭
();
();
}
}
long end = ();
("解压完成,耗时:" + (end - start) + " ms");
} catch (Exception e) {
throw new RuntimeException("unzip error from ZipUtils", e);
} finally {
if (zipFile != null) {
try {
();
} catch (IOException e) {
();
}
}
}
}