Zip操作的工具类
/**
* Copyright 2002-2010 the original author is huanghe.
*/
package com.ucap.web.cm.webapp.util;
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.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
import org.apache.tools.zip.ZipOutputStream;
import com.ucap.template.Constants;
import com.ucap.utils.UUIDGenerator;
import com.ucap.utils.formatString.FormatString;
import com.ucap.utils.formatString.Validator;
/**
* 压缩和解压缩工具类
*/
@SuppressWarnings("unchecked")
public class ZipUtil {
private static int bufSize = 4096;
private static byte[] buf = new byte[bufSize];
private static String OS_TYPE;
static {
if (System.getProperty("os.name").equals("Linux")) {
OS_TYPE = "linux";
} else if (System.getProperty("os.name").indexOf("Windows") != -1) {
OS_TYPE = "windows";
}
}
public ZipUtil() {
}
/**
* 压缩文件夹内的文件
*
* @param zipDirectory
* 需要压缩的文件夹名
* @return File 压缩文件对象
*/
public static File doZip(String zipDirectory) {
ZipOutputStream zipOut;
File zipDir = new File(zipDirectory);
String zipFileName = zipDir.getName() + ".zip";// 压缩后生成的zip文件名
if (System.getProperty("os.name").startsWith("Windows")) {
if (!zipDirectory.endsWith("\\"))
zipDirectory = zipDirectory + "\\";
} else {
if (!zipDirectory.endsWith("/"))
zipDirectory = zipDirectory + "/";
}
//判断压缩文件是否已经存在,如果存在则删除
File preZip = new File(zipDirectory + "/" + zipFileName);
if (preZip.exists()) {
try {
FileUtils.forceDelete(preZip);
} catch (IOException e) {
e.printStackTrace();
}
}
//创建临时目录
File tempFolder = createTempFolder();
String tempPath = tempFolder.getAbsolutePath();
File zipFile = new File(tempPath + "/" + zipFileName);
if (!zipFile.getParentFile().exists())
zipFile.getParentFile().mkdirs();
if (zipFile.exists() && zipFile.canWrite())
zipFile.delete();// 如果文件存在就删除原来的文件
try {
zipOut = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFile)));
handleDir(zipOut, zipDir, "");
zipOut.close();
FileUtils.copyFileToDirectory(zipFile, zipDir);
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
//删除临时文件夹
if (tempFolder.exists()) {
try {
FileUtils.deleteDirectory(tempFolder);
} catch (IOException e) {
e.printStackTrace();
}
}
}
File zip = new File(zipDir + "/" + zipFileName);
return zip;
}
/**
* 由doZip调用,递归完成目录文件读取
*
*/
private static void handleDir(ZipOutputStream out, File f, String base) throws IOException {
if (f.isDirectory()) {
File[] fl = f.listFiles();
if (System.getProperty("os.name").startsWith("Windows")) {
base = base.length() == 0 ? "" : base + "\\";
//out.putNextEntry(new org.apache.tools.zip.ZipEntry(base));
} else {
base = base.length() == 0 ? "" : base + "/";
//out.putNextEntry(new org.apache.tools.zip.ZipEntry(base));
}
for (int i = 0; i < fl.length; i++) {
handleDir(out, fl[i], base + fl[i].getName());
}
} else {
out.putNextEntry(new org.apache.tools.zip.ZipEntry(base));
FileInputStream in = new FileInputStream(f);
byte b[] = new byte[512];
int len = 0;
while ((len = in.read(b)) != -1) {
out.write(b, 0, len);
}
out.closeEntry();
in.close();
}
}
/**
* 解压指定zip文件
*
* @param unZipfileName
* 需要解压的zip文件
* @param destPath
* 目录文件夹,如果目标文件夹为null ,则解压到当前目录下
* @param isDeleteSrc
* 是否删除原压缩文件
* @throws Exception
*/
public static List<String> unZip(File zipfileName, String destPath, boolean isDeleteSrc)
throws Exception {
List<String> ret = new ArrayList<String>();
if (zipfileName == null)
return ret;
if (destPath == null)
destPath = zipfileName.getAbsolutePath().substring(0,
zipfileName.getAbsolutePath().lastIndexOf("\\"))
+ "\\";
FileOutputStream fileOut;
File file;
InputStream inputStream;
ZipFile zipFile;
int readedBytes;
File tempFolder = createTempFolder();
String tempPath = tempFolder.getAbsolutePath();
try {
if (System.getProperty("os.name").equals("Linux"))
zipFile = new org.apache.tools.zip.ZipFile(zipfileName,"GBK");
else
zipFile = new org.apache.tools.zip.ZipFile(zipfileName);
for (Enumeration entries = zipFile.getEntries(); entries.hasMoreElements();) {
ZipEntry entry = (ZipEntry) entries.nextElement();
if (System.getProperty("os.name").equals("Linux"))
entry.setUnixMode(644);//解决linux乱码
file = new File(tempPath + "/" + entry.getName());
if (entry.isDirectory()) {
if (!file.exists())
FileUtils.forceMkdir(file);
} else {
// 如果指定文件的目录不存在,则创建之.
File parent = file.getParentFile();
if (!parent.exists()) {
FileUtils.forceMkdir(parent);
}
ret.add(entry.getName());
inputStream = zipFile.getInputStream(entry);
if (isRequiredSuffix(file.getAbsolutePath(), Constants.REQUIRED_ENCODE_SUFFIXS)) {
String content = IOUtils.toString(inputStream, "UTF-8");
FileUtils.writeStringToFile(file, content, "UTF-8");
} else {
fileOut = new FileOutputStream(file);
while ((readedBytes = inputStream.read(buf)) > 0) {
fileOut.write(buf, 0, readedBytes);
}
fileOut.close();
inputStream.close();
}
}
}
zipFile.close();
File destFolder = new File(destPath);
if (!destFolder.exists()) {
destFolder.mkdir();
}
FileUtils.copyDirectory(tempFolder, destFolder);
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
//删除临时文件夹
if (tempFolder.exists()) {
try {
FileUtils.deleteDirectory(tempFolder);
} catch (IOException e) {
e.printStackTrace();
}
}
//删除上传的压缩文件
if (isDeleteSrc)
zipfileName.delete();
}
return ret;
}
private static File createTempFolder() {
File tempFolder = null;
String tempPath = "";
try{
String tempFileName = UUIDGenerator.generate();
if (OS_TYPE.equals("window"))
tempPath = "C:/" + tempFileName;
else
tempPath = "/tmp/" + tempFileName;
tempFolder = new File(tempPath);
if (!tempFolder.exists()) {
tempFolder.mkdir();
}
}catch (Exception e) {
System.out.println("CreateTempFolder:"+tempPath +" Exception:" + e.getMessage());
}
return tempFolder;
}
// 设置缓冲区大小
public void setBufSize(int bufSize) {
this.bufSize = bufSize;
}
// 测试AntZip类
public static void main(String[] args) throws Exception {
ZipUtil m_zip = new ZipUtil();
String filepath = "C:\\template\\template_upload/site/";
try {
m_zip.doZip(filepath);
} catch (Exception ex) {
ex.printStackTrace();
}
}
/**
* 判断文件的后缀名是否包含在是否以suffixs中
* @param fileName
* @param suffixs
* @return
*/
public static boolean isRequiredSuffix(String fileName, String... suffixs) {
if (Validator.isEmpty(fileName)) {
return false;
}
if (suffixs == null || suffixs.length < 1) {
return false;
}
for (String str : suffixs) {
if (fileName.indexOf("." + str) == fileName.length() - ("." + str).length()) {
return true;
}
}
return false;
}
/**
* 判断解压的文件是否包含汉字。
*
* @param zipfileName 要解压的文件
* @return 返回判断结果,true 含有 ;false 不含有
*/
public static boolean isHaveChinese(File zipfileName) {
ZipFile zipFile = null;
try {
zipFile = new ZipFile(zipfileName);
ZipEntry zipEntry = null;
Enumeration e = zipFile.getEntries();
while (e.hasMoreElements()) {
zipEntry = (ZipEntry) e.nextElement();
if (FormatString.IsHaveChinese(zipEntry.getName())) {
return true;
}
}
return false;
} catch (IOException e1) {
e1.printStackTrace();
} finally {
try {
zipFile.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return false;
}
}
Zip操作的工具类的更多相关文章
- 自己封装的poi操作Excel工具类
自己封装的poi操作Excel工具类 在上一篇文章<使用poi读写Excel>中分享了一下poi操作Excel的简单示例,这次要分享一下我封装的一个Excel操作的工具类. 该工具类主要完 ...
- Redis操作Set工具类封装,Java Redis Set命令封装
Redis操作Set工具类封装,Java Redis Set命令封装 >>>>>>>>>>>>>>>>& ...
- Redis操作List工具类封装,Java Redis List命令封装
Redis操作List工具类封装,Java Redis List命令封装 >>>>>>>>>>>>>>>> ...
- Redis操作Hash工具类封装,Redis工具类封装
Redis操作Hash工具类封装,Redis工具类封装 >>>>>>>>>>>>>>>>>> ...
- Redis操作字符串工具类封装,Redis工具类封装
Redis操作字符串工具类封装,Redis工具类封装 >>>>>>>>>>>>>>>>>>& ...
- java中文件操作的工具类
代码: package com.lky.pojo; import java.io.BufferedReader; import java.io.BufferedWriter; import java. ...
- Java操作Redis工具类
依赖 jar 包 <dependency> <groupId>redis.clients</groupId> <artifactId>jedis< ...
- 使用JDK的zip编写打包工具类
JDK自带的zip AIP在java.util.zip包下面,主要有以下几个类: java.util.zip.ZipEntryjava.util.zip.ZipInputStreamjava.util ...
- android操作ini工具类
package com.smarteye.common; import java.io.BufferedReader; import java.io.BufferedWriter; import ja ...
随机推荐
- Racket 模拟SICP的流(延时计算)
默认的Racket是要对函数参数进行求值的, 例如(f 1 (+ 1 2))里面,(+ 1 2)要先求值为3,变为(f 1 3)再进行下一步操作.因此, Racket若按照SICP使用define关键 ...
- C++语言编译系统提供的内部数据类型的自动隐式转换
C++语言编译系统提供的内部数据类型的自动隐式转换规则如下: 程序在执行算术运算时,低类型自动隐式转换为高类型. 在函数调用时,将实参值赋给形参,系统隐式的将实参转换为形参的类型,并赋值给形参. 函数 ...
- ORACLE EBS 表空间控制
--1G=1024MB --1M=1024KB --1K=1024Bytes --1M=11048576Bytes --1G=1024*11048576Bytes=11313741824Bytes S ...
- Erlang简单并行服务器
Erlang简单并行服务器(金庆的专栏)Erlang并行服务器为每个Tcp连接创建对应的连接进程,处理客户端数据.参考 Erlang程序设计(第2版)17.1.3 顺序和并行服务器并行服务器的诀窍是: ...
- Android动态换肤(三、安装主题apk方式)
相比之前免安装的方式,这种方法需要用户下载并安装皮肤apk,程序写起来比免安装的要简单很多,像很多系统主题就是通过这种方式实现的. 这种方式的思路是,从所有已安装的应用程序中遍历出皮肤程序(根据特定包 ...
- Android打包遇到的那些坑
说说今天打包遇到的坑,由于线上有个支付的bug需要紧急修复,而我们的项目又没有使用热修复,所以只能通过编译打包等传统流程,还好android上线比较快. 说说我进早上打包遇到的几个问题吧,首先我使用b ...
- Android应用打破65K方法数限制
近日,Android Developers在Google+上宣布了新的Multidex支持库,为方法总数超过65K的Android应用提供了官方支持.如果你是一名幸运的Android应用开发者,正在开 ...
- bash与ksh数组使用
区别: bash与ksh在数组的使用中,最大的不同在于数组的定义. bash: declare -a arrayname ksh:set -A arrayname 其实,数组不用非要定义,在赋值的时候 ...
- Download all Apple open source OS X files at once
While it is well known that Mac OS X contains open source code, how to access and download that sour ...
- HTML5中 HTML表单和PHP环境搭建及与PHP交互 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博! 知识点概括:HTML表单/PHP环境搭建/表单提交数据与PHP交互 第一部分:HTML表单 <!DOCTYP ...