如何通过Java

时间:2016-03-30 08:03:21

标签: java ssl ftp ftps

我无法通过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();

1 个答案:

答案 0 :(得分:19)

SimpleFTP类/库根本不支持TLS / SSL。

使用FTPSClient class中的Apache Commons Net library代替。

请参阅official example for the FTPClient class,然后将FTPClient替换为FTPSClient

FTPSClient ftpClient = new FTPSClient();
ftpClient.connect(host);
ftpClient.login(user, password);

FTPSClient类默认使用显式TLS / SSL(推荐)。在极少数情况下,您需要隐式TLS / SSL,请使用new FTPSClient(true)