Java ftp client sourcecode
625 viewsA simple ftp client that download files from a remote server, the functionalities are very basic (for demo purposes) but i'll work on more features later when I have the time. In the mean time you can play with it by downloading the sourcecode/classes below. 
JAVA:
-
/*-------------------------------------------------------------------------- Main class ***************** By: deAppel http://www.engineeringserver.com Contact: info [@] engineeringserver.com Version: 29/07/2008 "***************** Note: an FTP console client that download files on a remote server //----------------------------------------------------------------------*/ public class Main { public static void main(String[] args){ String userName = "yourUserName"; String userPassword = "yourPassword"; String userHost = "engineeringserver.com"; String userDirectory = "public_html"; System.out.println("Downloading files from: " + userHost + "/" + userDirectory); FilePath FP = new FilePath(); FP.connectToFTPAndSaveStructure(userName,userPassword,userHost,userDirectory); } }
screenshot download filedownloader












