解决:MalformedServerReplyException: Could not parse response code. Server Reply: SSH-2.0-OpenSSH 异常。
场景:
Java后台使用 连接服务器,进行FTP操作 :上传/下载文件。
异常:
: Could not parse response code.
Server Reply: SSH-2.0-OpenSSH
at .__getReply(:337)
at .__getReply(:294)
at ._connectAction_(:400)
at ._connectAction_(:924)
at (:183)
at (:203)
at (:351)
at (:375)
nullProcess finished with exit code 0
原因:
一般我们使用 Xftp 或 FileZilla这些软件去连接服务器(FTP/SFTP)都是可以连接到。区别就是连接的参数中
1.协议:ftp 或 sftp
2.端口:21/22
但是在Java后台使用通过协议SSH2进行SFTP连接时就会报如上错误,原因是它不支持这种方式的连接(使用FTPSClient的SSL也是不行的)。
解决方法有两种:
第一种:Java后台继续使用工具,然后把服务器开启FTP协议。
第二种:换一种连接方式,使用 代替。
使用第二种需要引入 架包。SpringBoot项目在pom中直接引入,其他的可自行下载。
<dependency>
<groupId></groupId>
<artifactId>jsch</artifactId>
<version>0.1.49</version>
</dependency>
使用第一种方法需要找运维去把服务器开启SFTP协议,一般你个小开发人家能不能帮你或者基于一些安全考虑能不能开启都是问题。所以这里推荐使用第二种方法。
ChannelSftp 和 FTPClient 的一些使用中区别:
1、连接方式
FTPClient的连接
FTPClient ftp = new FTPClient();
(ip, port);
//下面三行代码必须要,而且不能改变编码格式
("UTF-8");
(FTPClient.BINARY_FILE_TYPE);
FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_NT);
("zh");
//如果采用默认端口,可以使用(url) 的方式直接连接FTP服务器
(userName, password);//登录
ChannelSftp 连接
JSch jsch = new JSch();
if (privateKey != null) {
(privateKey);// 设置私钥
}
Session session = (userName, host, port);
if (password != null) {
(password);
}
Properties config = new Properties();
("StrictHostKeyChecking", "no");
(config);
();
Channel channel = ("sftp");
();
ChannelSftp sftp = (ChannelSftp) channel;
2、主要功能方法
切换到 directory 目录:(directory); (ftpFilePath);
上传文件:(FileInputStream, fileName) ; (fileName, FileInputStream);
下载文件:(fileName, new FileOutputStream(file)); () 或
还有需要注意的就是关闭的连接的方法,ChannelSftp需要你把 Session也关闭掉。