Java 文件压缩 成 zip

package com.soft.zip;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

 

public class CreateZip {
	
	public static void main(String[] args) throws IOException {
		List<File> list = new ArrayList<File>();
		list.add(new File("F:\\报告模板1-监督抽检.doc"));
		list.add(new File("F:\\报告模板2-一般风险监测.doc"));
		getZipFile(list);
	}
 	
	/**
	 * 
	 * @param fileList   文件集合
	 * @param zipFileName 压缩包的名称
	 * @return
	 * @throws IOException
	 */
	public static File getZipFile(List<File> fileList) throws IOException {
        File zipFile = getFile("F:\\", UUID.randomUUID().toString() + ".zip");
        // 文件输出流
        FileOutputStream outputStream = new FileOutputStream(zipFile);  
        // 压缩流
        ZipOutputStream zipOutputStream = new ZipOutputStream(outputStream);
//        zipOutputStream.setEncoding(System.getProperty("UTF-8"));

        int size = fileList.size();
        // 压缩列表中的文件
        for (int i = 0;i < size;i++) {
            File file = fileList.get(i);
            zipFile(file, zipOutputStream);
        }
        // 关闭压缩流、文件流
        zipOutputStream.close();
        outputStream.close();
        System.err.println("完成");
        System.err.println(zipFile.getPath());
        return zipFile;
    } 
	
	
	   /**
     * 通过指定路径和文件名来获取文件对象,当文件不存在时自动创建
     * @param path
     * @param fileName
     * @return
     * @throws IOException
     */
    public static File getFile(String path, String fileName) throws IOException {
        // 创建文件对象
        File file;
        if (path != null && !path.equals(""))
            file = new File(path, fileName);
        else
            file = new File(fileName);
        if (!file.exists()) {
            file.createNewFile();
        }
        // 返回文件
        return file;
    } 
	
 
	   /**
     * 将文件数据写入文件压缩流
     * @param file 带压缩文件
     * @param zipOutputStream 压缩文件流
     * @throws IOException
     */
    private static void zipFile(File file, ZipOutputStream zipOutputStream) throws IOException {
        if (file.exists()) {
            if (file.isFile()) {
                FileInputStream fis = new FileInputStream(file);
                BufferedInputStream bis = new BufferedInputStream(fis);
                ZipEntry entry = new ZipEntry(file.getName());
                zipOutputStream.putNextEntry(entry);

                final int MAX_BYTE = 1024 * 1024 * 1024; // 最大流为10MB
                long streamTotal = 0; // 接收流的容量
                int streamNum = 0; // 需要分开的流数目
                int leaveByte = 0; // 文件剩下的字符数
                byte[] buffer; // byte数据接受文件的数据

                streamTotal = bis.available(); // 获取流的最大字符数
                streamNum = (int) Math.floor(streamTotal / MAX_BYTE);
                leaveByte = (int) (streamTotal % MAX_BYTE);

                if (streamNum > 0) {
                    for (int i = 0;i < streamNum;i++) {
                        buffer = new byte[MAX_BYTE];
                        bis.read(buffer, 0, MAX_BYTE);
                        zipOutputStream.write(buffer, 0, MAX_BYTE);
                    }
                }

                // 写入剩下的流数据
                buffer = new byte[leaveByte];
                bis.read(buffer, 0, leaveByte); // 读入流
                zipOutputStream.write(buffer, 0, leaveByte); // 写入流
                zipOutputStream.closeEntry(); // 关闭当前的zip entry

                // 关闭输入流
                bis.close();
                fis.close();
            }
        }
    }

}
发布了34 篇原创文章 · 获赞 5 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_36623327/article/details/90764715