Home
History Key
- New content
Removed content
Recent Versions
Choose two versions to compare, or click the link to view it.
EditThis is a Java FTP client library based on RFC 959 and is intended to provide essential ftp support. Passive mode is implemented as are a number of basic operations (logon, logoff, get and put). The purpose of this wikilibrary is to add links to other resources that you use. We also suggest adding contact information, information about setting upprovide a developmentsupported environment,ftp guidelinesclient library for your developmentJava process,application. instructionsWhile Sun provides a URL handler for runningFTP, builds,it requirements,is undocumented and documentation. has Removetraditionally thesebeen instructions.only loosely supported.
Suggested
Here nextis steps:
Goan example showing how a file test.bin could be uploaded totheaAdminremotetab,site:FtpClient
selectftpTools, and add or remove tools (the feature tabs on top of this workspace)Go to theAdmintab, selectGeneral, and select the default landing tabGo to theSource/SVNtab and get the Subversion URL of your= newrepository.FtpClient("xxx");
ftp.logon("anonymous",Check out this repository to your local computer using your Assembla username and password. Add files to the checked-out folder and commit, or import an existing repository on the Import/Export subtab.If you are running an agile process with iterations or releases, edit the first milestone on theMilestonestab to represent the next iteration or release. Put tickets (tasks, features, issues) into the ticket list and tag them with milestones.Edit your email alert settings by going to theStreampage and selecting the Settings bar at the top.Add team members on theTeamtab. They will use an Assembla username and password to log in to this workspace, and to the Subversion repository.
ftp.passive();
ftp.cd("/tmp");
ftp.binary();
ftp.put("test.bin");
ftp.quit();