在代码下面,我尝试使用FTPSClient
连接SFTP主机。我使用FTPSClient
进行连接,而不是FTP客户端。但我面临连接问题。
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);
}
答案 0 :(得分:4)
您无法使用Apache Commons Net FTPS客户端FTPSClient
连接到SFTP端口22.这是一个完全不同的协议。
您必须使用其他库。最常用的Java SFTP库是JSch。