javazip打包和压缩

使用java原始的zip压缩类打包和减压缩文件,缺点是如果文件夹或者文件名为中文会出现乱码

如果需要支持中文的,可以采用apache的org.apache.tools.zip.ZipOutputStream

 

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;
/**
 * 打包zip工具类,缺点是如果目录有中文乱码
 * @author 流浪鱼
 */
public class ZipUtil

{
	/**
	 * 文件压缩
	 * @param zipFileName
	 * @param inputFile
	 * @throws Exception
	 */
	public static void zip(String zipFileName, String inputFile) throws Exception {
		zip(zipFileName, new File(inputFile));
	}
	
	/**
	 * 压缩文件
	 * @param zipFileName  生成文件名
	 * @param inputFile  需要压缩文件流
	 * @throws Exception
	 */
	public static void zip(String zipFileName, File inputFile) throws Exception {
		ZipOutputStream out = new ZipOutputStream(new FileOutputStream(
				zipFileName));
		zip(out, inputFile, "");
		out.close();
	}
	/**
	 * 解压zip文件
	 * @param zipFileName
	 * @param outputDirectory 解压到的文件夹
	 * @throws Exception
	 */
	public static void unzip(String zipFileName, String outputDirectory)
			throws Exception {
		ZipInputStream in = new ZipInputStream(new FileInputStream(zipFileName));
		ZipEntry z;
		while ((z = in.getNextEntry()) != null)
		{
			System.out.println("unziping " + z.getName());
			if (z.isDirectory())
			{
				String name = z.getName();
				name = name.substring(0, name.length() - 1);
				File f = new File(outputDirectory + File.separator + name);
				f.mkdir();
				System.out.println("mkdir " + outputDirectory + File.separator
						+ name);
			}
			else {
				File f = new File(outputDirectory + File.separator
						+ z.getName());
				f.createNewFile();
				FileOutputStream out = new FileOutputStream(f);
				int b;
				while ((b = in.read()) != -1)
					out.write(b);
				out.close();
			}
		}
		in.close();

	}
	/**
	 * 文件压缩
	 * @param out  zip输出流
	 * @param f 需要压缩的文件,可以为文件夹也可以为文件
	 * @param base
	 * @throws Exception
	 */
	public static void zip(ZipOutputStream out, File f, String base) throws Exception {
		if (f.isDirectory())
		{
			File[] fl = f.listFiles();
			out.putNextEntry(new ZipEntry(base + "/"));
			base = base.length() == 0 ? "" : base + "/";
			for (int i = 0; i < fl.length; i++)
			{
				zip(out, fl[i], base + fl[i].getName());
			}
		}
		else
		{
			out.putNextEntry(new ZipEntry(base));
			FileInputStream in = new FileInputStream(f);
			int b;
			while ((b = in.read()) != -1)
				out.write(b);
			in.close();
		}
	}
	
	public static void main(String[] args) {
		String sourceDir = "E:/fmpptest";
		String targetDir="e:/";
		File f =new File(sourceDir);
		String zipName = targetDir+"测试.zip"; 
		try {
			zip(zipName,f);
                        unzip(zipName,"c:/test");
                } catch (Exception e) {
			e.printStackTrace();
		}
	}
	
	
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值