使用Apache Commons上传文件的FTPS over SSL / TLS失败

时间:2016-09-22 07:04:06

标签: android ftps sslexception

我正在尝试使用Apache commons库在android中实现FTP文件上传。通信必须通过显式TLS身份验证完成。我可以成功登录,连接到服务器和列出文件,但是当我尝试将文件存储到服务器时,它会在服务器的目标文件夹中创建一个文件,大小为0并抛出SSLException:写入错误,管道损坏。 怎么克服这个? 以下是我的代码:

FTPSClient ftpClient = new FTPSClient("TLS", false);
ftpClient.addProtocolCommandListener(new PrintCommandListener(new   
KeyManagerFactory kmf =            getInstance(KeyManagerFactory.getDefaultAlgorithm());
kmf.init(null, null);
KeyManager km = kmf.getKeyManagers()[0];
ftpClient.setKeyManager(km);
ftpClient.setBufferSize(1000);
ftpClient.setConnectTimeout(5000);
ftpClient.connect(InetAddress.getByName("server ip address"), 990);
// Set protection buffer size
ftpClient.execPBSZ(0);
// // Set data channel protection to private
ftpClient.execPROT("P");
ftpClient.login("username", "password");
ftpClient.changeWorkingDirectory("/");
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
ftpClient.enterLocalPassiveMode();
buffInp = new BufferedInputStream(new     FileInputStream(file.getAbsolutePath()));

//throwing exception here
boolean status = ftpClient.storeFile( picture.getName(), buffInp );

0 个答案:

没有答案