Hi All.
I use FTPSClient to list FTP server's directory.
When FTP server's directory contains file, FTPSClient.listFiles() execute
correctly.
But, when FTP server's directory do not contains any file. it allways
throw exception.
My example code as follows.
static void main(String[] args){
FTPSClient client = new FTPSClient();
//start to set KeyManager and TrustManager
.....
client .setKeyManager(kmf.getKeyManagers()[0]);
client .setTrustManager(tmf.getTrustManagers()[0]);
//end set KeyManager and TrustManager
client .connect(localhost, 21);
client .login(guest,guest);
client .execPROT("P");
client .execPBSZ(0);
client .pwd();
client .pasv();
client .listFiles();
}
Xuejie.Chen
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]