Vishwnath Tamrakar
Vishwnath Tamrakar

Reputation: 61

How to upload and download a directory from FTP server in java?

I am working in a project in which is is require to upload and download a directory and their all the file and folder in java .and I also need to know that uploding and downloading status means how much percent the folder to which I am uploading has been uploaded or downloaded.

Upvotes: 0

Views: 1668

Answers (3)

Jon7
Jon7

Reputation: 7215

Just to throw one more library at you... you could also try Apache Commons VFS. It gives you access to tons of different file systems including FTP.

Upvotes: 0

Raghuram
Raghuram

Reputation: 52625

You may want to look at the FTPClient class of commons-net as well.

Upvotes: 1

Daniel
Daniel

Reputation: 28074

A search for "java ftp client" on google reveals edtFTPj.

Upvotes: 0

Related Questions