java压缩和解压文件(支持中文文件名)
程序员文章站
2024-03-13 23:39:04
...
参考点击打开链接,本文中加了些注释,是个人在学习时的理解笔记,如有错误欢迎指正.
Apache的zip包可解决中文文件名问题。
1、maven项目的pom.xml加载jar
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.9.6</version>
</dependency>
2、解压和压缩文件编码
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
import org.apache.tools.zip.ZipOutputStream;
public class CHZipUtils {
/**使用GBK编码可以避免压缩中文文件名乱码*/
private static final String CHINESE_CHARSET = "GBK";
/**文件读取缓冲区大小*/
private static final int CACHE_SIZE = 1024;
/**
* 压缩文件
* @param sourceFolder 压缩文件夹
* @param zipFilePath 压缩文件输出路径
*/
public static void zip(String sourceFolder, String zipFilePath) {
OutputStream os = null;
BufferedOutputStream bos = null;
ZipOutputStream zos = null;
try {
os = new FileOutputStream(zipFilePath);
bos = new BufferedOutputStream(os);
zos = new ZipOutputStream(bos);
// 解决中文文件名乱码
zos.setEncoding(CHINESE_CHARSET);
File file = new File(sourceFolder);
String basePath = null;
if (file.isDirectory()) {
basePath = file.getPath(); //将此抽象路径名转换为路径名字符串
} else {
basePath = file.getParent(); //得到文件路径
}
zipFile(file, basePath, zos);
} catch (Exception e) {
e.printStackTrace();
} finally{
try {
if (zos != null) {
zos.closeEntry();
zos.close();
}
if (bos != null) {
bos.close();
}
if (os != null) {
os.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
/**
* 递归压缩文件
* @param parentFile 需压缩的文件
* @param basePath 压缩文件所在路径
* @param zos
* @throws Exception
*/
private static void zipFile(File parentFile, String basePath, ZipOutputStream zos) throws Exception {
File[] files = new File[0];
if (parentFile.isDirectory()) {
//返回文件夹中的文件列表
files = parentFile.listFiles();
} else { //压缩一个文件的情况下
files = new File[1];
files[0] = parentFile;
}
String pathName;
InputStream is;
BufferedInputStream bis;
byte[] cache = new byte[CACHE_SIZE];
for (File file : files) {
if (file.isDirectory()) {
//文件夹 再次遍历里面的内容
pathName = file.getPath().substring(basePath.length() + 1) + File.separator;
zos.putNextEntry(new ZipEntry(pathName));
zipFile(file, basePath, zos);
} else {
pathName = file.getPath().substring(basePath.length() + 1); //得到文件名
is = new FileInputStream(file);
bis = new BufferedInputStream(is);
zos.putNextEntry(new ZipEntry(pathName));
int nRead = 0;
String content=null;
//bis.read 返回-1表示已经读到文件尾
/*bis.read(cache, 0, CACHE_SIZE)和bis.read(cache)
都是将缓存数据读到字节数组中,read返回zero则是没读完,返回-1读取完闭。
缓存中的数据读完之后 ,就会 释放。*/
//将字符读入数组 bis.read(目的缓存区,开始存储的字节偏移量,要读取的最大字节数)
while ((nRead = bis.read(cache, 0, CACHE_SIZE)) != -1) {
content+=new String(cache, 0, nRead );
zos.write(cache, 0, nRead);
}
bis.close();
is.close();
}
}
}
/**
* 解压压缩包
* @param zipFilePath 压缩文件路径
* @param destDir 解压目录
*/
public static void unZip(String zipFilePath, String destDir) {
ZipFile zipFile = null; //需解压的压缩文件
try {
BufferedInputStream bis = null;
FileOutputStream fos = null;
BufferedOutputStream bos = null;
zipFile = new ZipFile(zipFilePath, CHINESE_CHARSET);
//以压缩文件中显示顺序将所有文件返回
Enumeration<ZipEntry> zipEntries = zipFile.getEntries();
File file, parentFile;
ZipEntry entry; //需解压的对象
byte[] cache = new byte[CACHE_SIZE];
while (zipEntries.hasMoreElements()) { //压缩包内是否包含多个元素,至少包含一个对象时返回true,否则返回false
//zipEntries.nextElement()如果该枚举对象至少有一个元素可提供,则返回该枚举的下一个元素
entry = (ZipEntry) zipEntries.nextElement();
if (entry.isDirectory()) {
new File(destDir + entry.getName()).mkdirs();
continue;
}
bis = new BufferedInputStream(zipFile.getInputStream(entry));
file = new File(destDir + entry.getName()); //创建解压文件
parentFile = file.getParentFile();
if (parentFile != null && (!parentFile.exists())) {
parentFile.mkdirs();
}
fos = new FileOutputStream(file);
bos = new BufferedOutputStream(fos, CACHE_SIZE);
int readIndex = 0;
//写入解压到的文件中
while ((readIndex = bis.read(cache, 0, CACHE_SIZE)) != -1) {
fos.write(cache, 0, readIndex);
}
//刷新此缓冲的输出流,保证数据全部都能写出
bos.flush();
bos.close();
fos.close();
bis.close();
}
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
zipFile.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
3、测试
public static void main(String[] args) throws Exception {
// String sourceFolder = "E:/file/新建文本文档.txt";
// String sourceFolder = "E:/file/test/文件夹/新建文本文档.txt";
String sourceFolder = "E:/file/test/";
String zipFilePath = "E:/file/zip/压缩文件.zip";
// CHZipUtils.zip(sourceFolder, zipFilePath);
String destDir = "E:/file/unzip/";
CHZipUtils.unZip(zipFilePath, destDir);
System.out.println("********执行成功**********");
}
相关参考:http://www.cnblogs.com/blogyuan/archive/2013/05/16/3082342.html
推荐阅读
-
Java压缩解压zip文件的中文文件名在Windows和Linux环境下乱码问题的解决方案 zipzipfilezipoutputstream
-
java压缩和解压文件(支持中文文件名)
-
解决Java原生压缩组件不支持中文文件名乱码的问题
-
解决Java原生压缩组件不支持中文文件名乱码的问题
-
用java解压zip或jar文件解决中文乱码,支持编码设置 JavaJDKCC++C#
-
用java解压zip或jar文件解决中文乱码,支持编码设置 JavaJDKCC++C#
-
Java基础知识 27(随机访问文件流,序列化流和反序列化流,属性集合properties,SequenceInputStream,压缩流和解压流)
-
java不解压直接读取压缩包中文件的实现方法
-
java实现zip压缩中文文件名乱码怎么办?
-
java不解压直接读取压缩包中文件的实现方法