org.fugerit.java.tool.compress.CompressUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fj-tool Show documentation
Show all versions of fj-tool Show documentation
Fugerit Java Tool Library for JDK 1.8 and up
package org.fugerit.java.tool.compress;
import java.io.File;
import java.io.IOException;
import org.fugerit.java.core.io.helper.HelperIOException;
public class CompressUtils {
private CompressUtils() {}
public static void compress7Zipfile( File sourceDir, File outputFile) throws IOException {
compressZipfile(sourceDir, outputFile);
}
public static void compressZipfile( File sourceDir, File outputFile) throws IOException {
HelperIOException.apply( () -> ArchiveDicFacadeTool.getInstanceExt().compressByExtension(sourceDir, outputFile) );
}
}