Since I received no positives answers to my last question. I will try to write a Java FTP upload applet myself.

My question is: "Can you recommend a Java FTP client library for me to use?"

I want it to be:

  • stable
  • able to handle passive and active modes
  • able to provide upload progress information
  • throw catchable exceptions if something went wrong (especially when an upload does not succeed)
  • cheap/free to use, preferably open source

I found this overview of some libraries, but since this article is from 2003, maybe some new developments have happened :)

link|improve this question

feedback

8 Answers

up vote 22 down vote accepted

Check out Apache commons-net, which contains FTP utilities. Off the top of my head I'm not sure if it meets all of your requirements, but it's certainly free!

link|improve this answer
This info bit is added here although it is unrelated to the question - just wanted to place it somewhere. commons-net FtpClient still lacks IPv6 support (RFC 2438) in the latest 2.0 release dated 2008. 2.1 is supposed to include it however. They dont release very often... – Moritz Both Oct 3 '10 at 22:30
1  
@Moritz Both: That was finally fixed in 2010. See issues.apache.org/jira/browse/NET-288 . – sleske Aug 16 '11 at 14:06
I am trying to use the suggested FTP library but it's giving problems behind a network proxy, any suggestions? – Ashish Sharma Feb 6 at 11:25
feedback

Yes, EnterpriseDT's edtFTPj is stable (first released in 2000), has all the features you might need, and is open source as well.

It's used in a bunch of open source projects (as well as in many commercial projects), and is acknowledged to be one of the fastest client libraries around.

As another poster noted, if you do wish to upgrade to SFTP and/or FTPS, it is a simple upgrade path with very few code changes required.

link|improve this answer
feedback

You have also this 2006 article which lists different options for FTP clients.

commons-net is good, but FTP-GO can give you some of the more advanced features you are looking for.

link|improve this answer
feedback

Commons-net surely. :) Most open source projects use it these days.

yc

link|improve this answer
feedback

I used Apache Commons VFS

cya

link|improve this answer
feedback

ftp4j is the best one, both for features and license:

http://www.sauronsoftware.it/projects/ftp4j/

link|improve this answer
feedback

I have successfully used the Enterprise DT FTP library, which is free and open source. I can't compare it to other libraries (like the Apache Commons Net library) since I haven't used them. It does provide a simple upgrade path to SFTP (over SSH) and FTPS (over SSL), though that is a pay-for commercial product.

link|improve this answer
feedback

Apache commons-nets get updates more frequently recently, while Enterprise DT library seems to update even more frequently.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.