如何在 Java 中通过 TLS/SSL (FTPS) 服务器连接到 FTP
我被困在通过TLS / SSL(FTPS)服务器连接到FTP。我正在使用SimpleFTP库,通过能够在没有SSL的情况下连接FTP服务器,但无法连接FTPS。
它在第2行(ftp.connect)给了我这个错误,
SimpleFTP 在连接到 FTP 服务器时收到未知响应:
220----------欢迎使用 Pure-FTPd [privsep] [TLS] ----------
并且我使用以下代码
SimpleFTP ftp = new SimpleFTP();
// Connect to an FTP server on port 21.
ftp.connect("xxx.xxx.xxx.xxx", 21, "username", "pwd");
//getting error at (ftp.connect) above line
// Set binary mode.
ftp.bin();
// Change to a new working directory on the FTP server.
ftp.cwd("web");
ftp.disconnect();