本文介绍了使用org.apache.commons.net.ftp.FTPClient保护FTP的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有一种方法可以通过 org.apache.commons.net.ftp.FTPClient
来实现安全的FTP?
如果不是,还有什么其他的Java选项?
您可以使用org.apache.commons.net。 ftp。 FTPSClient 而不是org.apache.commons.net.ftp。 FTPClient 有安全的ftpIs there a way I can implement a secure FTP with org.apache.commons.net.ftp.FTPClient
?
If not, what are other options for Java?
解决方案
You can use org.apache.commons.net.ftp.FTPSClient instead of org.apache.commons.net.ftp.FTPClient to have secure ftphttp://commons.apache.org/proper/commons-net/apidocs/org/apache/commons/net/ftp/FTPSClient.html
这篇关于使用org.apache.commons.net.ftp.FTPClient保护FTP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!