java使用Apache工具集实现ftp文件传输

本文详细介绍了如何使用Apache Commons Net库在Java中连接FTP服务器,进行文件的上传和下载操作。文章涵盖了从引入依赖到具体实现的步骤,包括设置FTP服务器的参数,以及文件的读写操作。最后还提供了测试环节。
摘要由CSDN通过智能技术生成

本文主要介绍如何使用Apache工具集commons-net提供的ftp工具实现向ftp服务器上传和下载文件。

一、准备

需要引用commons-net-3.5.jar包。

  • 使用maven导入:
<dependency>
    <groupId>commons-net</groupId>
    <artifactId>commons-net</artifactId>
    <version>3.5</version>
</dependency>
  • 手动下载:

http://central.maven.org/maven2/commons-net/commons-net/3.5/commons-net-3.5.jar

二、连接FTP Server

    /**
     * 连接FTP Server
     * @throws IOException
     */
    public static final String ANONYMOUS_USER="anonymous";
    private FTPClient connect(){        
        FTPClient client = new FTPClient();
        try{
            //连接FTP Server
            client.connect(this.host, this.port);
            //登陆
            if(this.user==null||"".equals(this.user)){
                //使用匿名登陆
                client.login(ANONYMOUS_USER, ANONYMOUS_USER);
            }else{
                client.login(this.user, this.password);
            }
            //设置文件格式
            client.setFileType(FTPClient.BINARY_FILE_TYPE);
            //获取FTP Server 应答
            int reply = client.getReplyCode();
            if(!FTPReply.isPositiveCompletion(reply)){
                client.disconnect();
                return null;
            }
            //切换工作目录
            changeWorkingDirectory(client);
            System.out.println("===连接到FTP:"+host+":"+port);
        }catch(IOException e){
            return null;
        }
        return client;
    }
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值