import com.axl.android.framework.server.FtpServer;
import com.axl.android.framework.server.FtpServerFactory;
public class MyFtpServer {
public static void main(String[] args) {
FtpServerFactory serverFactory = new FtpServerFactory();
// ...
FtpServer server = serverFactory.createServer();
try {
server.start();
} catch (Exception e) {
e.printStackTrace();
}
}
}