add SimpleFtpServer

This commit is contained in:
Looly
2020-11-12 19:07:05 +08:00
parent af118cd953
commit cd1e9fbaad
4 changed files with 246 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package cn.hutool.extra.ftp;
public class SimpleFtpServerTest {
public static void main(String[] args) {
SimpleFtpServer
.create()
.addAnonymous("d:/test/ftp/")
.start();
}
}