**
文件的压缩
**
中文乱码以及压缩包没有所要压缩文件的问题,亲测以下Java代码均可解决,话不多说直接上代码。
**
代码如下*
package com.jjyr.test;
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 org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipOutputStream;
public class CHZipUtil {
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();
}
}
}
public static void main(String[] args) throws Exception {
String sourceFolder = "E:/perl/jzyh/excel";
String zipFilePath = "E:/perl/jzyh/zip/手机.zip";
CHZipUtil.zip(sourceFolder, zipFilePath);
System.out.println("********执行成功**********");
}
}
注意以下几点:
1.必须导入apache的ant.jar 这个包
2.ZipEntry必须引入的是org.apache.tools.zip.ZipEntry;
3.ZipOutputStream必须引入的是org.apache.tools.zip.ZipOutputStream;
因为引入的这两个类有设置编码的方法,在io包里是没有这个方法的,我试了好多次没有成功终于在这个包中找到了这个方法,紧接着就压缩成功了,我就不上图了,这个代码绝对好用,在你都理解对的前提下。
这个是我第一次写博客,如有不足之处请谅解或给我留言,谢谢!!