Initial project

This commit is contained in:
Timi
2025-07-14 15:27:37 +08:00
parent 063520868e
commit 47f1c9520e
27 changed files with 1043 additions and 94 deletions

View File

@@ -0,0 +1,21 @@
package com.imyeyu.compress;
import java.io.File;
/**
* 抽象解压
*
* @author 夜雨
* @version 2024-06-30 18:02
*/
public abstract class Decompressor extends AbstractCompressor {
/**
* 执行解压
*
* @param fromFile 来源压缩文件
* @param toPath 解压路径
* @throws Exception 解压失败
*/
public abstract void run(File fromFile, String toPath) throws Exception;
}