java多文件压缩成zip包下载

方法如下

/**
     * 测试方法类
     *
     */ 
public class test{
    /**
     * 导出zip包
     *
     */   
    public void exportZip(HttpServletResponse response){

         //zip包路径及名称        
        String zipfilePath ="D:/zipName.zip";
        //包内文件
        List<String> files = new ArrayList<String>();
        files.add("D:/123.txt");//文件全路径
        files.add("D:/123.doc");//文件全路径
        //打包
        FasZipUtils.zip(zipfilePath, files.toArray(new String[0]));
        //写入响应流
        outputStream(response, zipfileName, zipfilePath);
    }
}




工具类如下



import java.io.*;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;

/**
 * 文件打包工具类
 * 
 * @author wy
 *
 */
public class FasZipUtils {
    /**
     * 将filePaths 文件集合打包到zipPath 这个zip文件中
     * 
     * @param zipPath
     *            压缩后的文件路径
     * @param filePaths
     *            需要压缩的文件路径列表
     * 
     */
    public static void zip(String zipPath, String[] filePaths) {
        File target = new File(zipPath);
        // 压缩文件名=源文件名.zip
        if (target.exists()) {
            target.delete(); // 删除旧的文件
        }
        FileOutputStream fos = null;
        ZipOutputStream zos = null;
        try {
            fos = new FileOutputStream(target);
            zos = new ZipOutputStream(new BufferedOutputStream(fos));
            // 添加对应的文件Entry
            addEntry(filePaths, zos);
        } catch (IOException e) {
            throw new RuntimeException(e);
        } finally {
            IOUtil.closeQuietly(zos, fos);
        }
    }

    /**
     * 扫描添加文件Entry
     * 
     * @param base
     *            基路径
     * 
     * @param source
     *            源文件
     * @param zos
     *            Zip文件输出流
     * @throws IOException
     */
    private static void addEntry(String[] filePaths, ZipOutputStream zos) throws IOException {
        FileInputStream fis = null;
        BufferedInputStream bis = null;
        File tempFile = null;
        try {

            for (String filePath : filePaths) {
                tempFile = new File(filePath);
                fis = new FileInputStream(tempFile);
                byte[] buffer = new byte[1024 * 10];
                bis = new BufferedInputStream(fis, buffer.length);
                int read = 0;
                zos.putNextEntry(new ZipEntry(tempFile.getName()));
                while ((read = bis.read(buffer, 0, buffer.length)) != -1) {
                    zos.write(buffer, 0, read);
                }
                zos.closeEntry();
                IOUtil.closeQuietly(fis);
            }
        } finally {
            IOUtil.closeQuietly(bis, fis);
        }
    }

    /**
     * 解压文件 -- 这个fun没有按照咱们的需要定制
     * 
     * @param filePath
     *            压缩文件路径
     */
    public static void unzip(String filePath) {
        File source = new File(filePath);
        if (source.exists()) {
            ZipInputStream zis = null;
            BufferedOutputStream bos = null;
            try {
                zis = new ZipInputStream(new FileInputStream(source));
                ZipEntry entry = null;
                while ((entry = zis.getNextEntry()) != null) {
                    if (entry.isDirectory()) {
                        continue;
                    }
                    File target = new File(source.getParent(), entry.getName());
                    if (!target.getParentFile().exists()) {
                        // 创建文件父目录
                        target.getParentFile().mkdirs();
                    }
                    // 写入文件
                    bos = new BufferedOutputStream(new FileOutputStream(target));
                    int read = 0;
                    byte[] buffer = new byte[1024 * 10];
                    while ((read = zis.read(buffer, 0, buffer.length)) != -1) {
                        bos.write(buffer, 0, read);
                    }
                    bos.flush();
                }
                zis.closeEntry();
            } catch (IOException e) {
                throw new RuntimeException(e);
            } finally {
                IOUtil.closeQuietly(zis, bos);
            }
        }
    }

    /**
     * 将存放在sourceFilePath目录下的源文件,打包成fileName名称的zip文件,并存放到zipFilePath路径下
     * @param sourceFilePath :待压缩的文件路径
     * @param zipFilePath :压缩后存放路径
     * @param fileName :压缩后文件的名称
     * @return
     */
    public static boolean fileToZip(String sourceFilePath,String zipFilePath,String fileName){
        boolean flag = false;
        File sourceFile = new File(sourceFilePath);
        FileInputStream fis = null;
        BufferedInputStream bis = null;
        FileOutputStream fos = null;
        ZipOutputStream zos = null;

        if(sourceFile.exists() == false){
            System.out.println("待压缩的文件目录:"+sourceFilePath+"不存在.");
        }else{
            try {
                File zipFile = new File(zipFilePath + "/" + fileName +".zip");
                if(zipFile.exists()){
                    System.out.println(zipFilePath + "目录下存在名字为:" + fileName +".zip" +"打包文件.");
                }else{
                    File[] sourceFiles = sourceFile.listFiles();
                    if(null == sourceFiles || sourceFiles.length<1){
                        System.out.println("待压缩的文件目录:" + sourceFilePath + "里面不存在文件,无需压缩.");
                    }else{
                        fos = new FileOutputStream(zipFile);
                        zos = new ZipOutputStream(new BufferedOutputStream(fos));
                        byte[] bufs = new byte[1024*10];
                        for(int i=0;i<sourceFiles.length;i++){
                            //创建ZIP实体,并添加进压缩包
                            ZipEntry zipEntry = new ZipEntry(sourceFiles[i].getName());
                            zos.putNextEntry(zipEntry);
                            //读取待压缩的文件并写进压缩包里
                            fis = new FileInputStream(sourceFiles[i]);
                            bis = new BufferedInputStream(fis, 1024*10);
                            int read = 0;
                            while((read=bis.read(bufs, 0, 1024*10)) != -1){
                                zos.write(bufs,0,read);
                            }

                            fis.close();
                            bis.close();

                        }
                        flag = true;
                    }
                }
            } catch (FileNotFoundException e) {
                e.printStackTrace();
                throw new RuntimeException(e);
            } catch (IOException e) {
                e.printStackTrace();
                throw new RuntimeException(e);
            } finally{
                //关闭流
                try {
                    if(null != bis) bis.close();
                    if(null != zos) zos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                    throw new RuntimeException(e);
                }
            }
        }
        return flag;
    }
}

/**
 * 用于关闭流对象
 * 
 * @author wy
 */
class IOUtil {
    /**
     * 关闭一个或多个流对象
     * 
     * @param closeables
     *            可关闭的流对象列表
     * @throws IOException
     */
    public static void close(Closeable... closeables) throws IOException {
        if (closeables != null) {
            for (Closeable closeable : closeables) {
                if (closeable != null) {
                    closeable.close();
                }
            }
        }
    }

    /**
     * 关闭一个或多个流对象
     * 
     * @param closeables
     *            可关闭的流对象列表
     */
    public static void closeQuietly(Closeable... closeables) {
        try {
            close(closeables);
        } catch (IOException e) {
            // do nothing
        }
    }

}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
您可以使用JavaZipOutputStream类和Java的加密库来实现文件压缩和加密。下面是一个示例代码,演示如何压缩文件并对其进行加密: ```java import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; import javax.crypto.Cipher; import javax.crypto.CipherOutputStream; import javax.crypto.spec.SecretKeySpec; public class ZipEncryptExample { public static void main(String[] args) { String sourceFile = "path/to/source/file"; String zipFile = "path/to/output/zip/file"; String password = "your_password"; try { // 创建ZipOutputStream对象 FileOutputStream fos = new FileOutputStream(zipFile); ZipOutputStream zos = new ZipOutputStream(fos); // 创建加密Cipher对象 Cipher cipher = Cipher.getInstance("AES"); SecretKeySpec secretKey = new SecretKeySpec(password.getBytes(), "AES"); cipher.init(Cipher.ENCRYPT_MODE, secretKey); // 添加文件zip文件中 addToZip(sourceFile, sourceFile, zos, cipher); // 关闭流 zos.close(); fos.close(); System.out.println("压缩并加密完!"); } catch (Exception e) { e.printStackTrace(); } } private static void addToZip(String fileName, String sourceFile, ZipOutputStream zos, Cipher cipher) throws Exception { File file = new File(sourceFile); FileInputStream fis = new FileInputStream(file); // 创建ZipEntry对象,并设置文件ZipEntry zipEntry = new ZipEntry(fileName); zos.putNextEntry(zipEntry); // 创建CipherOutputStream对象,将加密的数据写入ZipOutputStream CipherOutputStream cos = new CipherOutputStream(zos, cipher); byte[] buffer = new byte[1024]; int length; while ((length = fis.read(buffer)) >= 0) { cos.write(buffer, 0, length); } // 关闭流 cos.close(); fis.close(); } } ``` 在上面的示例代码中,您需要将`sourceFile`替换为要压缩文件的路径,`zipFile`替换为输出的ZIP文件路径,`password`替换为您想要使用的加密密码。代码会将指定的文件压缩ZIP文件,并使用AES算法对其进行加密。 请确保您已经含了Java的加密库,通过`import javax.crypto.Cipher`和`import javax.crypto.CipherOutputStream`导入相应的类。 请注意,加密和解密文件需要相同的密码。
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值