导出所有用户上传的文件,以压缩包形式导出

/* 附件导出 (导出所有用户上传的文件 以压缩包形式导出 )。

 * 1.创建一个临时存放文件的tempFile。
 * 2.在临时文件夹中创建用户文件夹用来存放下载好的文件(用户文件夹可以用时间戳或者uuid来命名)。
 * 3.把临时文件夹压缩成zip文件,存放到tempfile下面。
 * 4.根据流的形式把压缩文件读到放到浏览器下载 5.关闭流,删除临时文件中的用户文件夹和压缩好的用户文件夹。
 * 
 * @param response
 * @param export
 * @param request
 * @throws IOException
 *    */
@RequestMapping("/**/**")
public void export(HttpServletRequest request, HttpServletResponse response) throws IOException {
    File file1 = null;
    OutputStream out = response.getOutputStream();
    try {
        Map<String, Object> paramMap = RequestUtils.convertRequestToMap(request);
        Long formId = getLong(paramMap, "formId");
        String condition = getString(paramMap, "condition");
        List<Map<String, Object>> fromDataList = fFormService.findFFormData1(formId, condition);
        File file = null;
        // 获取项目路径
        String rootPath = this.getClass().getClassLoader().getResource("").getPath();
        // 创建临时文件夹tempFile
        File tempFile = new File(rootPath + "/tempFile");
        if (!tempFile.exists()) {
            tempFile.mkdirs();
        }
        // 创建用户文件夹 用来存放文件
        file1 = new File(tempFile.getPath() + "/" + System.currentTimeMillis());
        file1.mkdirs();
        for (Map<String, Object> map : fromDataList) {
            // 文件夹名称 根据序号名字创建
            String id = map.get("id").toString();
            String newFile = file1.getPath() + "/" + "序号" + id;
            // 新建的文件名称和路径
            file = new File(newFile);
            // 获取文件夹路径
            Path path = file.toPath();
            // 创建文件夹
            file.mkdirs();
            // 要下载的文件(包含各种文件格式,如图片 ,视频,pdf,等等...)
            Iterator<String> iter = map.keySet().iterator();
            while (iter.hasNext()) {
                String key = iter.next();
                String value = map.get(key).toString();
                if (value.contains("https://")) {
                    // 截取后缀名
                    String str = value.substring(value.lastIndexOf(".") + 1);
                    // 截取的文件名
                    String str1 = value.substring(value.indexOf("***/") + 4, value.indexOf("-******));
                    String newFileNmae = str1 + "." + str;
                    // 调用下载工具类
                    ZipFileDownload.dolFile(value, path,newFileNmae);
                }
            }
        }
        // 调用方法打包zip文件
        byte[] data = createZip(file1.getPath());
        // 压缩包名称
        String downloadName = file1.getName() + ".zip";
        response.setHeader("Content-Disposition",
                "attachment;filename=" + URLEncoder.encode(downloadName, "utf-8"));
        response.addHeader("Content-Length", "" + data.length);
        response.setContentType("application/octet-stream;charset=UTF-8");
        IOUtils.write(data, out);
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {
            // 压缩成功后删除项目中文件夹
            if (file1.exists()) {
                FileUtil.delFolder(file1.getPath());
            }
            if (out != null) {
                out.flush();
                out.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

//压缩打包
public byte[] createZip(String srcSource) throws Exception {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    ZipOutputStream zip = new ZipOutputStream(outputStream);
    // 将目标文件打包成zip导出
    File file = new File(srcSource);
    a(zip, file, "");
    IOUtils.closeQuietly(zip);
    return outputStream.toByteArray();
}

public void a(ZipOutputStream zip, File file, String dir) throws Exception {
    // 如果当前的是文件夹,则进行进一步处理
    try {
        if (file.isDirectory()) {
            // 得到文件列表信息
            File[] files = file.listFiles();
            // 将文件夹添加到下一级打包目录
            zip.putNextEntry(new ZipEntry(dir + "/"));
            dir = dir.length() == 0 ? "" : dir + "/";
            // 循环将文件夹中的文件打包
            for (int i = 0; i < files.length; i++) {
                a(zip, files[i], dir + files[i].getName());
            }
        } else {
            // 当前的是文件,打包处理文件输入流
            BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
            ZipEntry entry = new ZipEntry(dir);
            zip.putNextEntry(entry);
            zip.write(FileUtils.readFileToByteArray(file));
            IOUtils.closeQuietly(bis);
        }
    } catch (Exception e) {
        // TODO: handle exception
        zip.flush();
        zip.close();
    }
}

文件下载

public class ZipFileDownload {

     * 
     * @param urls 需要下载的url
     * @param path 需要下载的路径
     * @param newFileNmae 截取的新文件名
     * @return
     * @throws IOException
     */
    public static void dolFile(String urls, Path path, String newFileNmae) throws IOException {
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        File file = null;
        try {
            if (!urls.equals("") && urls != null) {
                URL url = new URL(urls);
                HttpURLConnection connection = (HttpURLConnection) url.openConnection();
                connection.setRequestMethod("GET");
                // 解决乱码问题
                connection.setRequestProperty("Content-type", "application/x-www-form-urlencoded;charset=UTF-8");
                connection.connect();
                InputStream is = connection.getInputStream();
                bis = new BufferedInputStream(is);
                file = new File(path + "/" + newFileNmae);
                FileOutputStream fos = new FileOutputStream(file);
                bos = new BufferedOutputStream(fos);
                int b = 0;
                byte[] byArr = new byte[1024 * 1024];
                while ((b = bis.read(byArr)) != -1) {
                    bos.write(byArr, 0, b);
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (bis != null) {
                    bis.close();
                }
                if (bos != null) {
                    bos.flush();
                    bos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
  }

删除压缩文件

 public class FileUtil {

    /**
     * 生成文件名
     *
     * @param oriFileName
     *
     * @return
     */
    public static String generateFileName(String oriFileName) {
        String type = null;
        if (StringUtils.isNotBlank(oriFileName)) {
            String[] fileNames = oriFileName.split("\\.");
            if (fileNames.length > 1) {
                type = "." + fileNames[fileNames.length - 1];
            }
        }
        String newName = UUID.randomUUID().toString();
        return newName + type;
    }
    /**
     * 删除文件夹以及文件夹内容
     * 
     * @param folderPath
     */
    public static void delFolder(String folderPath) {
        try {
            delAllFile(folderPath); // 删除完里面所有内容
            String filePath = folderPath;
            filePath = filePath.toString();
            java.io.File myFilePath = new java.io.File(filePath);
            myFilePath.delete(); // 删除空文件夹
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static boolean delAllFile(String path) {
        boolean flag = false;
        File file = new File(path);
        if (!file.exists()) {
            return flag;
        }
        if (!file.isDirectory()) {
            return flag;
        }
        String[] tempList = file.list();
        File temp = null;
        for (int i = 0; i < tempList.length; i++) {
            if (path.endsWith(File.separator)) {
                temp = new File(path + tempList[i]);
            } else {
                temp = new File(path + File.separator + tempList[i]);
            }
            if (temp.isFile()) {
                temp.delete();
            }
            if (temp.isDirectory()) {
                delAllFile(path + "/" + tempList[i]);// 先删除文件夹里面的文件
                delFolder(path + "/" + tempList[i]);// 再删除空文件夹
                flag = true;
            }
        }
        return flag;
    }
}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值