i've coded a simple java ftp client that you can use to connect to an ftp and download files to your disk. At the moment the features are limited but i'll work on that later if anyone wants me to code more features.
GeSHi (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);
System.
out.
println("Download finished");
}
}
Created by GeSHI 1.0.7.20

Java ftp client, code included