下面的代码我试图使用FTPSClient连接SFTP主机。我不是使用FTP客户端,而是使用FTPSClient进行连接。但是我面临着连接问题。

public static void main(String[] args) throws SocketException, IOException {
        String host ="sftphost.com";
        String user = "abc";
        String pwd  = "pwd"
        final FTPSClient ftp = new FTPSClient();
        System.out.println("host:"+host);
        ftp.connect(host,22);
        int reply = ftp.getReplyCode();
        ftp.login(user, pwd);
}

最佳答案

FTPS is not SFTP

您不能使用Apache Commons Net FTPS客户端FTPSClient连接到SFTP端口22。这是完全不同的协议。

您必须使用其他库。 Java最常用的SFTP库是JSch

另请参见Secure FTP with org.apache.commons.net.ftp.FTPClient

09-13 04:17