2008/10/14 David Latorre <[EMAIL PROTECTED]>: > No, you'd use a regular FTP client to connect to the server.There're several > Java implementations of a FtpClient you can use. The simplest case: if i'm > not wrong you can use a 'ftp://' string in order to create an URL with Java > standard classes which will effectively connect you to the specified > ftpserver. Apache commons net ftp client is used in FtpServer client tests > and it looks like a very good option(I'm using apache commons ftp myself in > our custom client).
A thing that I really don't like about Apache commons net Ftp Client is that you should uses getReply() and FTPReply.isPositiveCompletion(reply) instead of exceptions to handle command failures. -- Andrea Francia http://andreafrancia.blogspot.com/
