jdk自带zip打包功能

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.CRC32;
import java.util.zip.CheckedOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

public class FileToZip {
	
	private static final String BASE_DIR = "";
	private static final int BUFFER = 2048;  
	// 符号"/"用来作为目录标识判断符  
    private static final String PATH = "/"; 

	private FileToZip() {
        
    }
    
    public static void fileToZip(String inputFileName, String outputFileName) throws Exception {   
        ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outputFileName));  
        //out.setEncoding("GBK"); // ###### 这句话是关键,指定输出的编码方式   
        File f = new File(inputFileName);   
        fileToZip(out, f, "");   
        out.close();   
	}   
      
	private static void fileToZip(ZipOutputStream out, File f, String base) throws Exception {   
		if (f.isDirectory()) {   
			File[] fl = f.listFiles();   
			base = base.length() == 0 ? "" : base + "/";   
			out.putNextEntry(new ZipEntry(base));   
			for (int i = 0; i < fl.length; i++) {   
				fileToZip(out, fl[i], base + fl[i].getName());   
			}   
        } else {   
        	out.putNextEntry(new ZipEntry(base));   
        	FileInputStream in = new FileInputStream(f);   
        	byte[] buffer = new byte[1024];   
        	int n = in.read(buffer);   
        	while (n != -1) {   
        		out.write(buffer, 0, n);   
        		n = in.read(buffer);   
        	}   
        	in.close();   
        }   
	}   
    
	public static void compress(File srcFile) throws Exception {  
        String name = srcFile.getName();  
        String basePath = srcFile.getParent();  
        String destPath = basePath + name + ".zip";  
        compress(srcFile, destPath);  
    }  
	
	 public static void compress(File srcFile, File destFile) throws Exception {  
		  
	        // 对输出文件做CRC32校验  
	        CheckedOutputStream cos = new CheckedOutputStream(new FileOutputStream(  
	                destFile), new CRC32());  
	        ZipOutputStream zos = new ZipOutputStream(cos);  
	        zos.setLevel(9);
	        compress(srcFile, zos, BASE_DIR);  
	        zos.flush();  
	        zos.close();  
	    } 
	 
	 public static void compress(File srcFile, String destPath) throws Exception {  
	        compress(srcFile, new File(destPath));  
	    }  
	 
	 private static void compress(File srcFile, ZipOutputStream zos,  
	            String basePath) throws Exception {  
		 
	        if (srcFile.isDirectory()) {  
	            compressDir(srcFile, zos, basePath);  
	        } else {  
	            compressFile(srcFile, zos, basePath);  
	        }  
	    }  
	 
	 private static void compressDir(File dir, ZipOutputStream zos,  
	            String basePath) throws Exception {  
	  
	        File[] files = dir.listFiles();  
	  
	       // 构建空目录  
	       if (files.length < 1) {  
	            ZipEntry entry = new ZipEntry(dir.getName() + PATH);  
	  
	            zos.putNextEntry(entry);  
	            zos.closeEntry();  
	        }  
	        	 for (File file : files) {  
	 	            // 递归压缩  
	 	            //这里加上basePath就会带上当前目录,如果不加就会只打包该目录下的文件/文件夹
	 	            compress(file, zos, basePath+ dir.getName() + PATH);  
	        }
	        
	 }
	        
	        private static void compressFile(File file, ZipOutputStream zos, String dir)  
	                throws Exception {  
	      
	            /** 
	             * 压缩包内文件名定义 
	             *  
	             * <pre> 
	             * 如果有多级目录,那么这里就需要给出包含目录的文件名 
	             * 如果用WinRAR打开压缩包,中文名将显示为乱码 
	             * </pre> 
	             */  
	            ZipEntry entry = new ZipEntry(dir + file.getName());  
	      
	            zos.putNextEntry(entry);  
	      
	            BufferedInputStream bis = new BufferedInputStream(new FileInputStream(  
	                    file));  
	      
	            int count;  
	            byte data[] = new byte[BUFFER];  
	            while ((count = bis.read(data, 0, BUFFER)) != -1) {  
	                zos.write(data, 0, count);  
	            }  
	            bis.close();  
	      
	            zos.closeEntry();  
	        }  
	        
	        
	        
   /**
     * 将文件打包成ZIP压缩文件,main方法测试
     * @param args
     * @throws Exception 
     * @throws IOException 
     */
    public static void main(String[] args) throws Exception {
        String sourceFilePath = "E:/java/iamges-tuojin-yn/MT-GROUNPON-2/1";
        String targetUrl = "E:/java/iamges-tuojin-yn.zip";
        //fileToZip(sourceFilePath, targetUrl);
       compress(new File(sourceFilePath), targetUrl);
        System.out.println("end !!!");
    }


转载于:https://my.oschina.net/alanfans/blog/386339

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值