代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
压缩相关
作者:
博超
/ 发布于
2017/2/21
/
809
package com.blankj.utilcode.utils; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.Collection; import java.util.Enumeration; import java.util.List; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; import java.util.zip.ZipOutputStream; import static com.blankj.utilcode.utils.ConstUtils.KB; /** * <pre> * author: Blankj * blog : http://blankj.com * time : 2016/8/27 * desc : 压缩相关工具类 * </pre> */ public class ZipUtils { private ZipUtils() { throw new UnsupportedOperationException("u can't instantiate me..."); } /** * 批量压缩文件 * * @param resFiles 待压缩文件集合 * @param zipFilePath 压缩文件路径 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFiles(Collection<File> resFiles, String zipFilePath) throws IOException { return zipFiles(resFiles, zipFilePath, null); } /** * 批量压缩文件 * * @param resFiles 待压缩文件集合 * @param zipFilePath 压缩文件路径 * @param comment 压缩文件的注释 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFiles(Collection<File> resFiles, String zipFilePath, String comment) throws IOException { return zipFiles(resFiles, FileUtils.getFileByPath(zipFilePath), comment); } /** * 批量压缩文件 * * @param resFiles 待压缩文件集合 * @param zipFile 压缩文件 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFiles(Collection<File> resFiles, File zipFile) throws IOException { return zipFiles(resFiles, zipFile, null); } /** * 批量压缩文件 * * @param resFiles 待压缩文件集合 * @param zipFile 压缩文件 * @param comment 压缩文件的注释 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFiles(Collection<File> resFiles, File zipFile, String comment) throws IOException { if (resFiles == null || zipFile == null) return false; ZipOutputStream zos = null; try { zos = new ZipOutputStream(new FileOutputStream(zipFile)); for (File resFile : resFiles) { if (!zipFile(resFile, "", zos, comment)) return false; } return true; } finally { if (zos != null) { zos.finish(); CloseUtils.closeIO(zos); } } } /** * 压缩文件 * * @param resFilePath 待压缩文件路径 * @param zipFilePath 压缩文件路径 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFile(String resFilePath, String zipFilePath) throws IOException { return zipFile(resFilePath, zipFilePath, null); } /** * 压缩文件 * * @param resFilePath 待压缩文件路径 * @param zipFilePath 压缩文件路径 * @param comment 压缩文件的注释 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFile(String resFilePath, String zipFilePath, String comment) throws IOException { return zipFile(FileUtils.getFileByPath(resFilePath), FileUtils.getFileByPath(zipFilePath), comment); } /** * 压缩文件 * * @param resFile 待压缩文件 * @param zipFile 压缩文件 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFile(File resFile, File zipFile) throws IOException { return zipFile(resFile, zipFile, null); } /** * 压缩文件 * * @param resFile 待压缩文件 * @param zipFile 压缩文件 * @param comment 压缩文件的注释 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ public static boolean zipFile(File resFile, File zipFile, String comment) throws IOException { if (resFile == null || zipFile == null) return false; ZipOutputStream zos = null; try { zos = new ZipOutputStream(new FileOutputStream(zipFile)); return zipFile(resFile, "", zos, comment); } finally { if (zos != null) { CloseUtils.closeIO(zos); } } } /** * 压缩文件 * * @param resFile 待压缩文件 * @param rootPath 相对于压缩文件的路径 * @param zos 压缩文件输出流 * @param comment 压缩文件的注释 * @return {@code true}: 压缩成功{@code false}: 压缩失败 * @throws IOException IO错误时抛出 */ private static boolean zipFile(File resFile, String rootPath, ZipOutputStream zos, String comment) throws IOException { rootPath = rootPath + (StringUtils.isSpace(rootPath) ? "" : File.separator) + resFile.getName(); if (resFile.isDirectory()) { File[] fileList = resFile.listFiles(); // 如果是空文件夹那么创建它,我把'/'换为File.separator测试就不成功,eggPain if (fileList == null || fileList.length <= 0) { ZipEntry entry = new ZipEntry(rootPath + '/'); if (!StringUtils.isEmpty(comment)) entry.setComment(comment); zos.putNextEntry(entry); zos.closeEntry(); } else { for (File file : fileList) { // 如果递归返回false则返回false if (!zipFile(file, rootPath, zos, comment)) return false; } } } else { InputStream is = null; try { is = new BufferedInputStream(new FileInputStream(resFile)); ZipEntry entry = new ZipEntry(rootPath); if (!StringUtils.isEmpty(comment)) entry.setComment(comment); zos.putNextEntry(entry); byte buffer[] = new byte[KB]; int len; while ((len = is.read(buffer, 0, KB)) != -1) { zos.write(buffer, 0, len); } zos.closeEntry(); } finally { CloseUtils.closeIO(is); } } return true; } /** * 批量解压文件 * * @param zipFiles 压缩文件集合 * @param destDirPath 目标目录路径 * @return {@code true}: 解压成功{@code false}: 解压失败 * @throws IOException IO错误时抛出 */ public static boolean unzipFiles(Collection<File> zipFiles, String destDirPath) throws IOException { return unzipFiles(zipFiles, FileUtils.getFileByPath(destDirPath)); } /** * 批量解压文件 * * @param zipFiles 压缩文件集合 * @param destDir 目标目录 * @return {@code true}: 解压成功{@code false}: 解压失败 * @throws IOException IO错误时抛出 */ public static boolean unzipFiles(Collection<File> zipFiles, File destDir) throws IOException { if (zipFiles == null || destDir == null) return false; for (File zipFile : zipFiles) { if (!unzipFile(zipFile, destDir)) return false; } return true; } /** * 解压文件 * * @param zipFilePath 待解压文件路径 * @param destDirPath 目标目录路径 * @return {@code true}: 解压成功{@code false}: 解压失败 * @throws IOException IO错误时抛出 */ public static boolean unzipFile(String zipFilePath, String destDirPath) throws IOException { return unzipFile(FileUtils.getFileByPath(zipFilePath), FileUtils.getFileByPath(destDirPath)); } /** * 解压文件 * * @param zipFile 待解压文件 * @param destDir 目标目录 * @return {@code true}: 解压成功{@code false}: 解压失败 * @throws IOException IO错误时抛出 */ public static boolean unzipFile(File zipFile, File destDir) throws IOException { return unzipFileByKeyword(zipFile, destDir, null) != null; } /** * 解压带有关键字的文件 * * @param zipFilePath 待解压文件路径 * @param destDirPath 目标目录路径 * @param keyword 关键字 * @return 返回带有关键字的文件链表 * @throws IOException IO错误时抛出 */ public static List<File> unzipFileByKeyword(String zipFilePath, String destDirPath, String keyword) throws IOException { return unzipFileByKeyword(FileUtils.getFileByPath(zipFilePath), FileUtils.getFileByPath(destDirPath), keyword); } /** * 解压带有关键字的文件 * * @param zipFile 待解压文件 * @param destDir 目标目录 * @param keyword 关键字 * @return 返回带有关键字的文件链表 * @throws IOException IO错误时抛出 */ public static List<File> unzipFileByKeyword(File zipFile, File destDir, String keyword) throws IOException { if (zipFile == null || destDir == null) return null; List<File> files = new ArrayList<>(); ZipFile zf = new ZipFile(zipFile); Enumeration<?> entries = zf.entries(); while (entries.hasMoreElements()) { ZipEntry entry = ((ZipEntry) entries.nextElement()); String entryName = entry.getName(); if (StringUtils.isEmpty(keyword) || FileUtils.getFileName(entryName).toLowerCase().contains(keyword.toLowerCase())) { String filePath = destDir + File.separator + entryName; File file = new File(filePath); files.add(file); if (entry.isDirectory()) { if (!FileUtils.createOrExistsDir(file)) return null; } else { if (!FileUtils.createOrExistsFile(file)) return null; InputStream in = null; OutputStream out = null; try { in = new BufferedInputStream(zf.getInputStream(entry)); out = new BufferedOutputStream(new FileOutputStream(file)); byte buffer[] = new byte[KB]; int len; while ((len = in.read(buffer)) != -1) { out.write(buffer, 0, len); } } finally { CloseUtils.closeIO(in, out); } } } } return files; } /** * 获取压缩文件中的文件路径链表 * * @param zipFilePath 压缩文件路径 * @return 压缩文件中的文件路径链表 * @throws IOException IO错误时抛出 */ public static List<String> getFilesPath(String zipFilePath) throws IOException { return getFilesPath(FileUtils.getFileByPath(zipFilePath)); } /** * 获取压缩文件中的文件路径链表 * * @param zipFile 压缩文件 * @return 压缩文件中的文件路径链表 * @throws IOException IO错误时抛出 */ public static List<String> getFilesPath(File zipFile) throws IOException { if (zipFile == null) return null; List<String> paths = new ArrayList<>(); Enumeration<?> entries = getEntries(zipFile); while (entries.hasMoreElements()) { paths.add(((ZipEntry) entries.nextElement()).getName()); } return paths; } /** * 获取压缩文件中的注释链表 * * @param zipFilePath 压缩文件路径 * @return 压缩文件中的注释链表 * @throws IOException IO错误时抛出 */ public static List<String> getComments(String zipFilePath) throws IOException { return getComments(FileUtils.getFileByPath(zipFilePath)); } /** * 获取压缩文件中的注释链表 * * @param zipFile 压缩文件 * @return 压缩文件中的注释链表 * @throws IOException IO错误时抛出 */ public static List<String> getComments(File zipFile) throws IOException { if (zipFile == null) return null; List<String> comments = new ArrayList<>(); Enumeration<?> entries = getEntries(zipFile); while (entries.hasMoreElements()) { ZipEntry entry = ((ZipEntry) entries.nextElement()); comments.add(entry.getComment()); } return comments; } /** * 获取压缩文件中的文件对象 * * @param zipFilePath 压缩文件路径 * @return 压缩文件中的文件对象 * @throws IOException IO错误时抛出 */ public static Enumeration<?> getEntries(String zipFilePath) throws IOException { return getEntries(FileUtils.getFileByPath(zipFilePath)); } /** * 获取压缩文件中的文件对象 * * @param zipFile 压缩文件 * @return 压缩文件中的文件对象 * @throws IOException IO错误时抛出 */ public static Enumeration<?> getEntries(File zipFile) throws IOException { if (zipFile == null) return null; return new ZipFile(zipFile).entries(); } }
试试其它关键字
压缩相关
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
博超
贡献的其它代码
(
13
)
.
SQL 如何去除重复的字符串
.
查询域名映射的所有IP地址
.
Snackbar相关
.
压缩相关
.
通过java反射获取任意对象的字段名及字段值
.
Java 单选复选框
.
读取XML文件通用工具类(递归调用)
.
java处理json的工具类(list,map和json的之间的转换)
.
查询今天,昨天,近7天,近30天,本月,上一月数据的方法
.
在一个ASP.Net页中实现上传照片并存入数据库,上传后
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3