java打包下载

下面是打包的方法,例子中可以将 几个路径的文件压缩为一个压缩文件,可以满足基本的需要。但是有时候我们需要递归压缩,或者给出几个文件夹的路径,然后将这几个文件夹全部压缩,增强版的java打包下载将在后面的文章介绍。



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


public class ZipUtils {
    
    /**
     * 
     * 压缩文件夹或单个文件
     * @param srcFile 目录或者单个文件url
     * @param zipFile 压缩后的ZIP文件url
     * @throws Exception
     * @see [类、类#方法、类#成员]
     */
    public static void doCompress(String srcFile, String zipFile)
        throws Exception
    {
        doCompress(new File(srcFile), new File(zipFile));
    }
    
    /**
     * 
     * 压缩文件夹或单个文件
     * @param srcFile 目录或者单个文件
     * @param destFile 压缩后的ZIP文件
     * @throws Exception
     * @see [类、类#方法、类#成员]
     */
    public static void doCompress(File srcFile, File destFile)
        throws Exception
    {
        ZipOutputStream out = new ZipOutputStream(new FileOutputStream(destFile));
        if (srcFile.isDirectory())
        {
            File[] files = srcFile.listFiles();
            for (File file : files)
            {
                doCompress(file, out);
            }
        }
        else
        {
            doCompress(srcFile, out);
        }
    }
    
    /**
     * 
     * 压缩单个文件
     * @param pathname 文件完整url
     * @param out ZipOutputStream
     * @throws IOException
     * @see [类、类#方法、类#成员]
     */
    public static void doCompress(String pathname, ZipOutputStream out)
        throws IOException
    {
        doCompress(new File(pathname), out);
    }
    
    /**
     * 
     * 压缩单个文件
     * @param file File实体类
     * @param out ZipOutputStream
     * @throws IOException
     * @see [类、类#方法、类#成员]
     */
    public static void doCompress(File file, ZipOutputStream out)
        throws IOException
    {
        if (file.exists())
        {
            byte[] buffer = new byte[1024];
            FileInputStream fis = new FileInputStream(file);
            out.putNextEntry(new ZipEntry(file.getName()));
            int len = 0;
            // 读取文件的内容,打包到zip文件
            while ((len = fis.read(buffer)) > 0)
            {
                out.write(buffer, 0, len);
            }
            out.flush();
            out.closeEntry();
            fis.close();
        }
    }
    
}

import java.io.Serializable;
/**
 * 文件实体类*/
public class FileBean implements Serializable{
    
    private static final long serialVersionUID = -5452801884470115159L;
    
    private Integer fileId;//主键
    
    private String filePath;//文件保存路径
    
    private String fileName;//文件保存名称
    
    public FileBean(){
        
    }
       
    //Setters and Getters ...
}   


  /**
     * 打包压缩下载文件
     */
    @RequestMapping(value = "/downLoadZipFile")
    public void downLoadZipFile(List<FileBean> fileList, HttpServletResponse response) throws IOException{
        String zipName = "myfile.zip";
        response.setContentType("APPLICATION/OCTET-STREAM");  
        response.setHeader("Content-Disposition","attachment; filename="+zipName);
        ZipOutputStream out = new ZipOutputStream(response.getOutputStream());
        try {
            for(Iterator<FileBean> it = fileList.iterator();it.hasNext();){
                FileBean file = it.next();
                ZipUtils.zipFile(file.getFilePath()+file.getFileName(), out);
                response.flushBuffer();
            }
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            out.close();
        }
    }




转自:http://www.cnblogs.com/yzuzhang/p/4763606.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值