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 ...
随机推荐
- spark下使用submit提交任务后报jar包已存在错误
使用spark submit进行任务提交,离线跑数据,提交后的一段时间内可以application可以正常运行.过了一段时间后,就抛出以下错误: org.apache.spark.SparkExcep ...
- Android简易实战教程--第三十一话《自定义土司》
最近有点忙,好几天不更新博客了.今天就简单点,完成自定义土司. 主布局文件代码: <RelativeLayout xmlns:android="http://schemas.andro ...
- EBS开发之环境迁移
(一)环境迁移说明 1.1 迁移 由于EBS系统开发复杂,一般项目实施都是使用三套或者三套以上的系统,一套作为开发使用系统,一套作为集成测试系统,一套就是企业用的正式环境系统,在项目实施过程中对一 ...
- [线程]Thead 中传参数RuntimeError: thread.__init__() not called
在写一个多线程类的时候调用报错 RuntimeError: thread.__init__() not called class NotifyTread(threading.Thread): def ...
- 学习TensorFlow,保存学习到的网络结构参数并调用
在深度学习中,不管使用那种学习框架,我们会遇到一个很重要的问题,那就是在训练完之后,如何存储学习到的深度网络的参数?在测试时,如何调用这些网络参数?针对这两个问题,本篇博文主要探索TensorFlow ...
- Android 增量更新和升级
在年初的时候,尝试了一把热修复技术,当时选择的是阿里的andfix,使用起来也很简单,这里就不在多少,如果你对andfix有兴趣请链接:点击打开链接.虽然网上将热修复的文章很多,不过我还是想说原理,然 ...
- JAVA之旅(三十一)——JAVA的图形化界面,GUI布局,Frame,GUI事件监听机制,Action事件,鼠标事件
JAVA之旅(三十一)--JAVA的图形化界面,GUI布局,Frame,GUI事件监听机制,Action事件,鼠标事件 有段时间没有更新JAVA了,我们今天来说一下JAVA中的图形化界面,也就是GUI ...
- 06 Activity显示跳转
<span style="font-size:18px;">package com.fmy.day8_29task; import com.fmy.day8_29tas ...
- SSH深度历险(二) Jboss+EJB的第一个实例
学习感悟:每次学习新的知识,都会通过第一个小的实例入手,获得成就感,经典的Hello Workd实例奠定了我们成功的大门哈,这些经典的实例虽小但是五脏俱全呢,很好的理解了,Ejb的核心. 今天主要以这 ...
- Cocos2D将v1.0的tileMap游戏转换到v3.4中一例(一)
大熊猫猪·侯佩原创或翻译作品.欢迎转载,转载请注明出处. 如果觉得写的不好请告诉我,如果觉得不错请多多支持点赞.谢谢! hopy ;) 首先说一下为什么要转换,这是为了后面的A*寻路算法做准备.由于在 ...