使用ftp4j时出现此问题:
javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
ftp服务器启用了端口22上的连接,我可以连接没有问题filezilla。
这是我的代码:
private boolean copiarArchviosFtp(){
FTPClient ftpDestino=new FTPClient();
try{
TrustManager[] trustManager = new TrustManager[] { new X509TrustManager() {
public X509Certificate[] getAcceptedIssuers() {
return null;
}
public void checkClientTrusted(X509Certificate[] certs, String authType) {
}
public void checkServerTrusted(X509Certificate[] certs, String authType) {
}
} };
SSLContext sslContext = null;
try {
sslContext = SSLContext.getInstance("SSL");
sslContext.init(null, trustManager, new SecureRandom());
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (KeyManagementException e) {
e.printStackTrace();
}
SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();
ftpDestino.setSSLSocketFactory(sslSocketFactory);
ftpDestino.setSecurity(FTPClient.SECURITY_FTPS);
ftpDestino.connect("172.24.1.109",22);
ftpDestino.login("user","password");
ftpDestino.changeDirectory("/home/");
FTPFile[] listFilte=ftpDestino.list();
for(FTPFile ftpFile:listFilte){
System.out.println("nameFile: "+ftpFile.getName());
}
}
catch(Exception e){
// TODO Auto-generated catch block
e.printStackTrace();
}
return false;
}
有关如何解决此问题的任何想法?
答案 0 :(得分:2)
我正在研究如何通过SFTP复制文件。即使指定了FTPClient.SECURITY_FTPS,ftp4j库也无法正常工作,因为FTPS与SFTP不同。
我找到了一个使用另一个名为JSCH的库的解决方案。
以下是JSCH的示例。我希望这有助于某人。