FTPSClient返回MalformedServerReplyException:无法解析响应代码

2019-07-23 07:39发布

我有一个SFTP连接设置。 我用WinCSP和FileZilla中和测试服务器运行没有问题。 Java代码是从apache commons-net 2.0 ,这让我意外的错误

private String ftpServer="XXX.xx.x.XX";
private int ftpPort=99;
private String ftpUserName="myUserName";
private String ftpPassword="myPassword";

FTPSClient ftp = null;
        try{
            ftp = new FTPSClient();
            ftp.connect(hostname, port)
        } catch (Exception e){
           Logger.debug(e)
        }

堆栈跟踪

Server reply:SSH-2.0-WeOnlyDo-wodFTPD 2.3.6.165
org.apache.commons.net.MalformedServerReplyException: Could not parse response code.
at org.apache.commons.net.ftp.FTP.__getReply(FTP.java:315)
    at org.apache.commons.net.ftp.FTP._connectAction_(FTP.java:364)
    at org.apache.commons.net.ftp.FTPClient._connectAction_(FTPClient.java:540)
    at org.apache.commons.net.ftp.FTPSClient._connectAction_(FTPSClient.java:167)
    at org.apache.commons.net.SocketClient.connect(SocketClient.java:178)
    at myHomeFtpService.getFtpConnection(HomeFtpService.java:40)

Answer 1:

由于要连接到使用FTP客户端SSH服务器。 FTPS和SFTP是两个不同的协议。

因为他们支持SFTP两种的WinSCP和Filezilla的正常工作。



文章来源: FTPSClient returns MalformedServerReplyException: cannot parse response code