码迷,mamicode.com
首页 > 编程语言 > 详细

Java解压文件

时间:2014-09-24 19:08:37      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:java

import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;


public class Zip2File {
/**
 * 创建目录
 * @param path
 * 目录绝对路径名
 */
static void createDir(String path) {
 File dir = new File(path);
 if (dir.exists() == false)
  dir.mkdir();
}
/**
 * 解压zip文件
 * @param zipFilePath
 *            zip文件绝对路径
 * @param unzipDirectory
 *            解压到的确
 * @throws Exception
 */
@SuppressWarnings("rawtypes")
public static void unzip(String zipFilePath, String unzipDirectory)throws Exception {
 File file = new File(zipFilePath);
 ZipFile zipFile = new ZipFile(file);
 // 创建本zip文件解压目录
 File unzipFile = new File(unzipDirectory);
 if (unzipFile.exists())
 unzipFile.delete();
 unzipFile.mkdir();
 // 得到zip文件条目枚举对象
 Enumeration zipEnum = zipFile.getEntries();
 // 定义输入输出流对象
 InputStream input = null;
 OutputStream output = null;
 // 定义对象
 ZipEntry entry = null;
 // 循环读取条目
 while (zipEnum.hasMoreElements()) {
 // 得到当前条目
 entry = (ZipEntry) zipEnum.nextElement();
 String entryName = new String(entry.getName());
 // 用/分隔条目名称
 String names[] = entryName.split("\\/");
 int length = names.length;
 String path = unzipFile.getAbsolutePath();
 System.out.println(path+"----");
 for (int v = 0; v < length; v++) {
   if (v < length - 1) { // 最后一个目录之前的目录
    path += "/" + names[v] + "/";
    createDir(path);
   } else { // 最后一个
    if (entryName.endsWith("/")) // 为目录,则创建文件夹
         createDir(unzipFile.getAbsolutePath() + "/"+entryName);
    else { // 为文件,则输出到文件
     input = zipFile.getInputStream(entry);
     output = new FileOutputStream(new File(unzipFile.getAbsolutePath()+ "/" + entryName));
     byte[] buffer = new byte[1024 * 8];
     int readLen = 0;
     while ((readLen = input.read(buffer, 0, 1024 * 8)) != -1)
     output.write(buffer, 0, readLen);
     input.close();
     output.flush();
     output.close();
    }
   }
  }
  }
}
 
public static void main(String[] args) throws Exception {
unzip("D:\\1.zip", "D:\\新");
    System.out.println("over....................");
}
 
}

Java解压文件

标签:java

原文地址:http://blog.csdn.net/u012406790/article/details/39525725

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!