Java中如何使用ZipUtil压缩文件工具类
短信预约 -IT技能 免费直播动态提醒
这篇文章给大家介绍Java中如何使用ZipUtil压缩文件工具类,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
具体如下:
package com.utility.zip;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.util.zip.ZipEntry;import java.util.zip.ZipInputStream;import java.util.zip.ZipOutputStream;import com.utility.io.IOUtil;public final class ZipUtil {private ZipUtil() {// empty}public static File zip(String filePath) {File target = null;File source = new File(filePath);if (source.exists()) {// 压缩文件名=源文件名.zipString zipName = source.getName() + ".zip";target = new File(source.getParent(), zipName);if (target.exists()) {target.delete();// 删除旧的文件}FileOutputStream fos = null;ZipOutputStream zos = null;try {fos = new FileOutputStream(target);zos = new ZipOutputStream(new BufferedOutputStream(fos));// 添加对应的文件EntryaddEntry("/", source, zos);}catch (IOException e) {throw new RuntimeException(e);}finally {IOUtil.closeQuietly(zos, fos);}}return target;}private static void addEntry(String base, File source, ZipOutputStream zos) throws IOException {// 按目录分级,形如:/aaa/bbb.txtString entry = base + source.getName();if (source.isDirectory()) {for (File file : source.listFiles()) {// 递归列出目录下的所有文件,添加文件EntryaddEntry(entry + "/", file, zos);}} else {FileInputStream fis = null;BufferedInputStream bis = null;try {byte[] buffer = new byte[1024 * 10];fis = new FileInputStream(source);bis = new BufferedInputStream(fis, buffer.length);int read = 0;zos.putNextEntry(new ZipEntry(entry));while ((read = bis.read(buffer, 0, buffer.length)) != -1) {zos.write(buffer, 0, read);}zos.closeEntry();}finally {IOUtil.closeQuietly(bis, fis);}}}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 && !entry.isDirectory()) {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);}}}public static void main(String[] args) {String targetPath = "E:\\Win7壁纸";File file = ZipUtil.zip(targetPath);System.out.println(file);ZipUtil.unzip("F:\\Win7壁纸.zip");}}
下面是通过IO流工具类实现关闭一个或多个流对象的Java语言描述,获取可关闭的流对象列表,具体如下:
package com.utility.io;import java.io.Closeable;import java.io.IOException;public class IOUtil {public static void close(Closeable... closeables) throws IOException {if (closeables != null) {for (Closeable closeable : closeables) {if (closeable != null) {closeable.close();}}}}public static void closeQuietly(Closeable... closeables) {try {close(closeables);}catch (IOException e) {// do nothing}}}
关于Java中如何使用ZipUtil压缩文件工具类就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341