Engineeringserver.com

A community for computer science students & developers about software development, game development, game design, games, anime preview & reviews and more!


Java ftp client sourcecode

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5 out of 5)
Loading ... Loading ...
635 views

A 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:
  1. /*-------------------------------------------------------------------------- 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


Your Ad Here