To upload a file to an FTP server, which method is used in conjunction with the file's path and the name it should have on the server?
FileInputStream in = new FileInputStream("filePath");
ftp._____("nameInServer", in);
To upload a file to an FTP server, which method is used in conjunction with the file's path and the name it should have on the server?
FileInputStream in = new FileInputStream("filePath");
ftp._____("nameInServer", in);