java采用匿名模式下载ftp文件

pre

业务需要,简单记录,以备查询

问题&回答

  • java使用ftp协议下载文件
    请参考以下两个博客
    https://www.cnblogs.com/weihbs/p/7760552.html
    https://blog.csdn.net/u013149325/article/details/46309167

  • 实现匿名访问
    用户名使用anonymous,密码随便填写

  • 提示错误Host attempting data connect x.x.x.x is not same as server x.x.x.y
    解决方法
    client.setRemoteVerificationEnabled(false);
    参考博客https://blog.csdn.net/LOST_SB/article/details/19338091

你可能感兴趣的:(java采用匿名模式下载ftp文件)