java压缩解压缩文件工具类的实现

2024-06-23 08:18

本文主要是介绍java压缩解压缩文件工具类的实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

下面代码有解释,直接创建类复制就可以用

package com.demo.zip;import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;import android.util.Log;/*** Java utils 实现的Zip工具* * @author once*/
public class ZipUtils {private static final int BUFF_SIZE = 1024 * 1024; // 1M Byte/*** 批量压缩文件(夹)* * @param files*            要压缩的文件(夹)列表* @param zipFile*            生成的压缩文件* @throws IOException*             当压缩过程出错时抛出*/public static void zipFiles(File[] files, File zipFile) throws IOException {ZipOutputStream zipout = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFile), BUFF_SIZE));for (File resFile : files) {zipFile(resFile, zipout, "");}Log.i("info", "是否存在:" + zipFile.exists());zipout.close();}/*** 压缩文件* * @param resFile*            需要压缩的文件(夹)* @param zipout*            压缩的目的文件* @param rootpath*            压缩的文件路径* @throws FileNotFoundException*             找不到文件时抛出* @throws IOException*             当压缩过程出错时抛出*/private static void zipFile(File resFile, ZipOutputStream zipout,String rootpath) throws FileNotFoundException, IOException {rootpath = rootpath+ (rootpath.trim().length() == 0 ? "" : File.separator)+ resFile.getName();rootpath = new String(rootpath.getBytes("8859_1"), "GB2312");if (resFile.isDirectory()) {File[] fileList = resFile.listFiles();for (File file : fileList) {zipFile(file, zipout, rootpath);}} else {byte buffer[] = new byte[BUFF_SIZE];BufferedInputStream in = new BufferedInputStream(new FileInputStream(resFile), BUFF_SIZE);zipout.putNextEntry(new ZipEntry(rootpath));int realLength;while ((realLength = in.read(buffer)) != -1) {zipout.write(buffer, 0, realLength);}in.close();zipout.flush();zipout.closeEntry();}}/*** zip压缩功能测试. 将指定文件压缩后存到一压缩文件中* * @param baseDir*            所要压缩的文件名* @param objFileName*            压缩后的文件名* @return 压缩后文件的大小* @throws Exception*/public static long createFileToZip(String zipFilename, String sourceFileName)throws Exception {File sourceFile = new File(sourceFileName);byte[] buf = new byte[1024];// 压缩文件名File objFile = new File(zipFilename);ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(objFile));ZipEntry ze = null;// 创建一个ZipEntry,并设置Name和其它的一些属性ze = new ZipEntry(sourceFile.getName());ze.setSize(sourceFile.length());ze.setTime(sourceFile.lastModified());// 将ZipEntry加到zos中,再写入实际的文件内容zos.putNextEntry(ze);InputStream is = new BufferedInputStream(new FileInputStream(sourceFile));int readLen = -1;while ((readLen = is.read(buf, 0, 1024)) != -1) {zos.write(buf, 0, readLen);}is.close();zos.close();return objFile.length();}/* 删除文件 */public static void delete(File file) {if (file.exists() && file.isFile()) {file.delete();return;}if (file.isDirectory()) {File[] childFiles = file.listFiles();if (childFiles == null || childFiles.length == 0) {// file.delete();return;}for (int i = 0; i < childFiles.length; i++) {delete(childFiles[i]);}// file.delete();}}public static boolean deleteD(String sPath) {// 如果sPath不以文件分隔符结尾,自动添加文件分隔符if (!sPath.endsWith(File.separator)) {sPath = sPath + File.separator;}File dirFile = new File(sPath);// 如果dir对应的文件不存在,或者不是一个目录,则退出if (!dirFile.exists() || !dirFile.isDirectory()) {return false;}boolean flag = true;// 删除文件夹下的所有文件(包括子目录)File[] files = dirFile.listFiles();for (int i = 0; i < files.length; i++) {// 删除子文件if (files[i].isFile()) {flag = deleteFile(files[i].getAbsolutePath());if (!flag)break;} // 删除子目录else {flag = deleteD(files[i].getAbsolutePath());if (!flag)break;}}if (!flag)return false;// 删除当前目录return dirFile.delete();}public static boolean deleteFile(String sPath) {boolean flag = false;File file = new File(sPath);// 路径为文件且不为空则进行删除if (file.isFile() && file.exists()) {file.delete();flag = true;}return flag;}/*** 解压缩zip包* * @param zipFilePath*            zip文件路径* @param targetPath*            解压缩到的位置,如果为null或空字符串则默认解压缩到跟zip包同目录跟zip包同名的文件夹下* @throws IOException*/public static void unzip(String zipFilePath, String targetPath)throws IOException {OutputStream os = null;InputStream is = null;ZipFile zipFile = null;try {zipFile = new ZipFile(zipFilePath);String directoryPath = "";if (null == targetPath || "".equals(targetPath)) {directoryPath = zipFilePath.substring(0,zipFilePath.lastIndexOf("."));} else {directoryPath = targetPath;}@SuppressWarnings("rawtypes")Enumeration entryEnum = zipFile.entries();if (null != entryEnum) {ZipEntry zipEntry = null;while (entryEnum.hasMoreElements()) {zipEntry = (ZipEntry) entryEnum.nextElement();if (zipEntry.isDirectory()) {directoryPath = directoryPath + File.separator+ zipEntry.getName();System.out.println(directoryPath);continue;}if (zipEntry.getSize() > 0) {// 文件File targetFile = buildFile(directoryPath+ File.separator + zipEntry.getName(), false);os = new BufferedOutputStream(new FileOutputStream(targetFile));is = zipFile.getInputStream(zipEntry);byte[] buffer = new byte[4096];int readLen = 0;while ((readLen = is.read(buffer, 0, 4096)) >= 0) {os.write(buffer, 0, readLen);}os.flush();os.close();} else {// 空目录buildFile(directoryPath + File.separator+ zipEntry.getName(), true);}}}} catch (IOException ex) {throw ex;} finally {if (null != zipFile) {zipFile = null;}if (null != is) {is.close();}if (null != os) {os.close();}}}/*** * 生产文件 如果文件所在路径不存在则生成路径* * * * @param fileName* *            文件名 带路径* * @param isDirectory*            是否为路径* * @return* * @author yayagepei* * @date 2008-8-27*/public static File buildFile(String fileName, boolean isDirectory) {File target = new File(fileName);if (isDirectory) {target.mkdirs();} else {if (!target.getParentFile().exists()) {target.getParentFile().mkdirs();target = new File(target.getAbsolutePath());}}return target;}/*** 解压缩功能. 将zipFile文件解压到folderPath目录下.* * @throws Exception*/public synchronized static int upZipFile(File zipFile, String folderPath)throws ZipException, IOException {// public static void upZipFile() throws Exception{ZipFile zfile = new ZipFile(zipFile);@SuppressWarnings("rawtypes")Enumeration zList = zfile.entries();ZipEntry ze = null;byte[] buf = new byte[1024];while (zList.hasMoreElements()) {ze = (ZipEntry) zList.nextElement();if (ze.isDirectory()) {Log.d("upZipFile", "ze.getName() = " + ze.getName());String dirstr = folderPath + ze.getName();// dirstr.trim();dirstr = new String(dirstr.getBytes("8859_1"), "GB2312");Log.d("upZipFile", "str = " + dirstr);File f = new File(dirstr);f.mkdir();continue;}Log.d("upZipFile", "ze.getName() = " + ze.getName());OutputStream os = new BufferedOutputStream(new FileOutputStream(getRealFileName(folderPath, ze.getName())));InputStream is = new BufferedInputStream(zfile.getInputStream(ze));int readLen = 0;while ((readLen = is.read(buf, 0, 1024)) != -1) {os.write(buf, 0, readLen);}is.close();os.close();}zfile.close();return 0;}/*** 给定根目录,返回一个相对路径所对应的实际文件名.* * @param baseDir*            指定根目录* @param absFileName*            相对路径名,来自于ZipEntry中的name* @return java.io.File 实际的文件*/public static File getRealFileName(String baseDir, String absFileName) {String[] dirs = absFileName.split("/");File ret = new File(baseDir);String substr = null;if (dirs.length > 1) {for (int i = 0; i < dirs.length - 1; i++) {substr = dirs[i];try {// substr.trim();substr = new String(substr.getBytes("8859_1"), "GB2312");} catch (UnsupportedEncodingException e) {// TODO Auto-generated catch blocke.printStackTrace();}ret = new File(ret, substr);}Log.d("upZipFile", "1ret = " + ret);if (!ret.exists())ret.mkdirs();substr = dirs[dirs.length - 1];try {// substr.trim();substr = new String(substr.getBytes("8859_1"), "GB2312");Log.d("upZipFile", "substr = " + substr);} catch (UnsupportedEncodingException e) {// TODO Auto-generated catch blocke.printStackTrace();}ret = new File(ret, substr);Log.d("upZipFile", "2ret = " + ret);return ret;}return ret;}
}


这篇关于java压缩解压缩文件工具类的实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1086615

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

hdu1565(状态压缩)

本人第一道ac的状态压缩dp,这题的数据非常水,很容易过 题意:在n*n的矩阵中选数字使得不存在任意两个数字相邻,求最大值 解题思路: 一、因为在1<<20中有很多状态是无效的,所以第一步是选择有效状态,存到cnt[]数组中 二、dp[i][j]表示到第i行的状态cnt[j]所能得到的最大值,状态转移方程dp[i][j] = max(dp[i][j],dp[i-1][k]) ,其中k满足c