98402f22559d3b4133b43f052f96cd6ed7884ab4
All checks were successful
CI/CD / build-deploy (pull_request) Successful in 13s
timi-compress
Java 压缩、解压缩工具
调用方式
压缩:
ZipCompressor.of("testSrc").toFile("testOut/test.zip");
TarCompressor.of(file).toStream(outputStream);
解压:
ZipDecompressor.of("testOut/test.zip").to("testOutDe");
GZipDecompressor.of(inputStream).to("testOutDe");