add map support

This commit is contained in:
Looly
2022-02-16 13:21:05 +08:00
parent 9ecca7a3c8
commit bac27e87db
7 changed files with 49 additions and 41 deletions

View File

@@ -134,6 +134,17 @@ public class Ftp extends AbstractFtp {
this.init();
}
/**
* 构造
*
* @param client 自定义实例化好的{@link FTPClient}
* @since 5.7.22
*/
public Ftp(FTPClient client) {
super(FtpConfig.create());
this.client = client;
}
/**
* 初始化连接
*