我应该使用什么 Java FTP 客户端库?

2022-01-09 00:00:00 ftp client java

由于我的最后没有收到任何肯定的答复问题.我会尝试自己写一个Java FTP上传小程序.

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

我的问题是:你能推荐一个 Java FTP 客户端库供我使用吗?"

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

我希望它是:

  • 稳定
  • 能够处理被动和主动模式
  • 能够提供上传进度信息
  • 如果出现问题(尤其是上传不成功时)抛出可捕获的异常
  • 便宜/免费使用,最好是开源的

我找到了 这个 overview 一些库,但是由于这篇文章是从 2003 年开始,也许发生了一些新的发展:)

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

推荐答案

查看 Apache commons-net,其中包含 FTP 实用程序.我不知道它是否满足您的所有要求,但它肯定是免费的!

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!

相关文章