When you want to download a file from an FTP server, what method do you use, specifying the file's name on the server and the output stream?
FileOutputStream out = new FileOutputStream("nameLocal");
ftp._____("nameInServer", out);
When you want to download a file from an FTP server, what method do you use, specifying the file's name on the server and the output stream?
FileOutputStream out = new FileOutputStream("nameLocal");
ftp._____("nameInServer", out);