论坛首页 Java企业应用论坛

java 解压zip文件

浏览 2309 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2011-11-09  
今天看啦一下jdk一看就发现啦  java.util.zip这个命名空间,发现是提供处理和解析zip文件的工具类
所以产生啦些兴趣,如是就写啦个解压ZIP的Demo,如有不足之处大家多多指教。还有个创建Zip文件的Demo在写的过
程中有中文乱码问题,所以现在没放上来,等改正后再传上来。

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;


public class Extract {
	//解压文件
	//filepath :要解压的zip文件路径
	//解压文件后存放的路径
	public void ExtractFile(String filepath,String outputfilepath) throws Exception
	{
		  File srcfile = new File(filepath);
		  if (!srcfile.getName().endsWith(".zip")) {
			  throw new Exception(String.format("%s不是zip文件", filepath));
		}
		  ZipFile zipFile = new ZipFile(filepath);//加载zip文件   
		  System.out.println(zipFile.getName()+"共有文件数"+zipFile.size());//打印zip文件包含的文件数  文件夹也包括在内
		  ZipEntry zipentry=null;//声明一个zip文件包含文件单一的实体对象
		  Enumeration<?> e = zipFile.entries();//返回 ZIP文件条目的枚举。
		  while (e.hasMoreElements()) {//测试此枚举是否包含更多的元素。
			zipentry  = (ZipEntry) e.nextElement();
			if (zipentry.isDirectory()) {//是否为文件夹而非文件
				
				File file = new File(outputfilepath+zipentry.getName());
				file.mkdir();//创建文件夹				
			}else
			{
				InputStream input =zipFile.getInputStream(zipentry);//得到当前文件的文件流
				File f = new File(outputfilepath+zipentry.getName());//创建当前文件
				FileOutputStream fout = new FileOutputStream(f);//声明一个输出流
				byte [] bytes = new byte[1024];//每次读1kb
				while (input.read(bytes)!=-1) {
					fout.write(bytes);//将读到的流输出生成一个新的文件
				}
				input.close();
				fout.close();
				System.err.println(zipentry.getName()+"解压成功...");
			}
			
		}
		  zipFile.close();
	}
}


public class test {

	public static void main(String[] args) {
		
		try {
			new Extract().ExtractFile("C:\\test.zip", "D:\\zipdemo");
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics