< ! -- 文件压缩和解压工具类-- > < dependency> < groupId> org. apache. ant< / groupId> < artifactId> ant< / artifactId> < version> 1.7 .1 < / version> < / dependency>
package com. example. demo. util; import lombok. extern . slf4j. Slf4j;
import org. apache. tools. ant. Project;
import org. apache. tools. ant. taskdefs. Expand;
import org. apache. tools. zip. ZipEntry;
import org. apache. tools. zip. ZipOutputStream; import java. io. * ;
@Slf4j
public class ZipReduceUtil { private static final int CACHE_SIZE = 1024 ; private static final String CHINESE_CHARSET = "GBK" ; public static final String wPath = "D:\\cmiip_Dir\\000000\\" ; public static final String linuxPath = "/app/cmiip_Dir/00000/" ; public static void main ( String[ ] args) { String localPath = "D:\\cmiip_Dir\\" ; String uploadPrefix = "S" ; String flag = "I" ; String batchNo = "0000000001" ; String wSourceFolder = wPath; ZipReduceDeal ( localPath, uploadPrefix, batchNo, flag, wSourceFolder) ; } public static void ZipReduceDeal ( String localPath, String uploadPrefix, String batchNo, String flag, String sourceFolder) { File fileNum = converFileTypeDir ( sourceFolder) ; long getlist = getlist ( fileNum) ; String zipOutputFilePath = localPath + uploadPrefix + "_" + flag + "_" + batchNo + "_0" + getlist + ".zip" ; File zipFilePath = converFileTypeDir ( zipOutputFilePath) ; zip ( sourceFolder, zipFilePath) ; } public static void zip ( String sourceFolder, File zipFilePath) { log. debug ( "待压缩的目录路径: {} 压缩后的zip包路径为: {}" , sourceFolder, zipFilePath) ; OutputStream os = null ; BufferedOutputStream bos = null ; ZipOutputStream zos = null ; try { os = new FileOutputStream ( zipFilePath) ; bos = new BufferedOutputStream ( os) ; zos = new ZipOutputStream ( bos) ; zos. setEncoding ( CHINESE_CHARSET) ; File file = new File ( sourceFolder) ; String basePath = null ; if ( file. isDirectory ( ) ) { basePath = file. getPath ( ) ; } else { basePath = file. getParent ( ) ; } zipFile ( file, basePath, zos) ; } catch ( Exception e) { e. printStackTrace ( ) ; } finally { try { if ( zos != null ) { zos. closeEntry ( ) ; zos. close ( ) ; } if ( bos != null ) { bos. close ( ) ; } if ( os != null ) { os. close ( ) ; } } catch ( IOException e) { e. printStackTrace ( ) ; } } } private static void zipFile ( File parentFile, String basePath, ZipOutputStream zos) throws Exception { File[ ] files = new File [ 0 ] ; if ( parentFile. isDirectory ( ) ) { files = parentFile. listFiles ( ) ; } else { files = new File [ 1 ] ; files[ 0 ] = parentFile; } String pathName; InputStream is ; BufferedInputStream bis; byte [ ] cache = new byte [ CACHE_SIZE ] ; for ( File file : files) { if ( file. isDirectory ( ) ) { pathName = file. getPath ( ) . substring ( basePath. length ( ) + 1 ) + File. separator; zos. putNextEntry ( new ZipEntry ( pathName) ) ; zipFile ( file, basePath, zos) ; } else { pathName = file. getPath ( ) . substring ( basePath. length ( ) + 1 ) ; is = new FileInputStream ( file) ; bis = new BufferedInputStream ( is ) ; zos. putNextEntry ( new ZipEntry ( pathName) ) ; int nRead = 0 ; while ( ( nRead = bis. read ( cache, 0 , CACHE_SIZE) ) != - 1 ) { zos. write ( cache, 0 , nRead) ; } bis. close ( ) ; is . close ( ) ; } } } public static long getlist ( File f) { log. debug ( "开始从 {} 路径下面获取指文件数量" , f) ; long size = 0 ; File flist[ ] = f. listFiles ( ) ; size = flist. length; for ( int i = 0 ; i < flist. length; i++ ) { if ( flist[ i] . isDirectory ( ) ) { size = size + getlist ( flist[ i] ) ; size-- ; } } return size; } public static File converFileTypeDir ( String fileDir) { return new File ( fileDir) ; } public void unZip ( String destDir, String sourceZip) { try { Project prj1 = new Project ( ) ; Expand expand = new Expand ( ) ; expand. setProject ( prj1) ; expand. setSrc ( new File ( sourceZip) ) ; expand. setOverwrite ( false ) ; File f = new File ( destDir) ; expand. setDest ( f) ; expand. execute ( ) ; } catch ( Exception e) { e. printStackTrace ( ) ; } }
}