`
summersun_ym
  • 浏览: 15067 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

Java FTP客户端代码(一)

阅读更多
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.SocketException;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.log4j.Logger;

/**
 * FTP客户端
 * 
 * @author summersun_ym
 * @version $Id: FTPClientTemplate.java 2010-11-22 上午12:54:47 $
 */
public class FTPClientTemplate {
    //---------------------------------------------------------------------
    // Instance data
    //---------------------------------------------------------------------
    /** logger */
    protected final Logger log            = Logger.getLogger(getClass());

    private String         host;
    private int            port;
    private String         username;
    private String         password;

    private boolean        binaryTransfer = true;
    private boolean        passiveMode    = true;
    private String         encoding       = "UTF-8";
    private int            clientTimeout  = 3000;

    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public boolean isBinaryTransfer() {
        return binaryTransfer;
    }

    public void setBinaryTransfer(boolean binaryTransfer) {
        this.binaryTransfer = binaryTransfer;
    }

    public boolean isPassiveMode() {
        return passiveMode;
    }

    public void setPassiveMode(boolean passiveMode) {
        this.passiveMode = passiveMode;
    }

    public String getEncoding() {
        return encoding;
    }

    public void setEncoding(String encoding) {
        this.encoding = encoding;
    }

    public int getClientTimeout() {
        return clientTimeout;
    }

    public void setClientTimeout(int clientTimeout) {
        this.clientTimeout = clientTimeout;
    }

    //---------------------------------------------------------------------
    // private method
    //---------------------------------------------------------------------
    /**
     * 返回一个FTPClient实例
     * 
     * @throws FTPClientException
     */
    private FTPClient getFTPClient() throws FTPClientException {
        FTPClient ftpClient = new FTPClient(); //构造一个FtpClient实例
        ftpClient.setControlEncoding(encoding); //设置字符集

        connect(ftpClient); //连接到ftp服务器
        
        //设置为passive模式
        if (passiveMode) {
            ftpClient.enterLocalPassiveMode();
        }
        setFileType(ftpClient); //设置文件传输类型
        
        try {
            ftpClient.setSoTimeout(clientTimeout);
        } catch (SocketException e) {
            throw new FTPClientException("Set timeout error.", e);
        }

        return ftpClient;
    }

    /**
     * 设置文件传输类型
     * 
     * @throws FTPClientException
     * @throws IOException
     */
    private void setFileType(FTPClient ftpClient) throws FTPClientException {
        try {
            if (binaryTransfer) {
                ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
            } else {
                ftpClient.setFileType(FTPClient.ASCII_FILE_TYPE);
            }
        } catch (IOException e) {
            throw new FTPClientException("Could not to set file type.", e);
        }
    }

    /**
     * 连接到ftp服务器
     * 
     * @param ftpClient
     * @return 连接成功返回true,否则返回false
     * @throws FTPClientException
     */
    public boolean connect(FTPClient ftpClient) throws FTPClientException {
        try {
            ftpClient.connect(host, port);

            // 连接后检测返回码来校验连接是否成功
            int reply = ftpClient.getReplyCode();

            if (FTPReply.isPositiveCompletion(reply)) {
                //登陆到ftp服务器
                if (ftpClient.login(username, password)) {
                    setFileType(ftpClient);
                    return true;
                }
            } else {
                ftpClient.disconnect();
                throw new FTPClientException("FTP server refused connection.");
            }
        } catch (IOException e) {
            if (ftpClient.isConnected()) {
                try {
                    ftpClient.disconnect(); //断开连接
                } catch (IOException e1) {
                    throw new FTPClientException("Could not disconnect from server.", e);
                }

            }
            throw new FTPClientException("Could not connect to server.", e);
        }
        return false;
    }

    /**
     * 断开ftp连接
     * 
     * @throws FTPClientException
     */
    private void disconnect(FTPClient ftpClient) throws FTPClientException {
        try {
            ftpClient.logout();
            if (ftpClient.isConnected()) {
                ftpClient.disconnect();
            }
        } catch (IOException e) {
            throw new FTPClientException("Could not disconnect from server.", e);
        }
    }

    //---------------------------------------------------------------------
    // public method
    //---------------------------------------------------------------------
    /**
     * 上传一个本地文件到远程指定文件
     * 
     * @param serverFile 服务器端文件名(包括完整路径)
     * @param localFile 本地文件名(包括完整路径)
     * @return 成功时,返回true,失败返回false
     * @throws FTPClientException
     */
    public boolean put(String serverFile, String localFile) throws FTPClientException {
        return put(serverFile, localFile, false);
    }

    /**
     * 上传一个本地文件到远程指定文件
     * 
     * @param serverFile 服务器端文件名(包括完整路径)
     * @param localFile 本地文件名(包括完整路径)
     * @param delFile 成功后是否删除文件
     * @return 成功时,返回true,失败返回false
     * @throws FTPClientException
     */
    public boolean put(String serverFile, String localFile, boolean delFile) throws FTPClientException {
        FTPClient ftpClient = null;
        InputStream input = null;
        try {
            ftpClient = getFTPClient();
            // 处理传输
            input = new FileInputStream(localFile);
            ftpClient.storeFile(serverFile, input);
            log.debug("put " + localFile);
            input.close();
            if (delFile) {
                (new File(localFile)).delete();
            }
            log.debug("delete " + localFile);
            return true;
        } catch (FileNotFoundException e) {
            throw new FTPClientException("local file not found.", e);
        } catch (IOException e) {
            throw new FTPClientException("Could not put file to server.", e);
        } finally {
            try {
                if (input != null) {
                    input.close();
                }
            } catch (Exception e) {
                throw new FTPClientException("Couldn't close FileInputStream.", e);
            }
            if (ftpClient != null) {
                disconnect(ftpClient); //断开连接
            }
        }
    }

    /**
     * 下载一个远程文件到本地的指定文件
     * 
     * @param serverFile 服务器端文件名(包括完整路径)
     * @param localFile 本地文件名(包括完整路径)
     * @return 成功时,返回true,失败返回false
     * @throws FTPClientException
     */
    public boolean get(String serverFile, String localFile) throws FTPClientException {
        return get(serverFile, localFile, false);
    }

    /**
     * 下载一个远程文件到本地的指定文件
     * 
     * @param serverFile 服务器端文件名(包括完整路径)
     * @param localFile 本地文件名(包括完整路径)
     * @return 成功时,返回true,失败返回false
     * @throws FTPClientException
     */
    public boolean get(String serverFile, String localFile, boolean delFile) throws FTPClientException {
        OutputStream output = null;
        try {
            output = new FileOutputStream(localFile);
            return get(serverFile, output, delFile);
        } catch (FileNotFoundException e) {
            throw new FTPClientException("local file not found.", e);
        } finally {
            try {
                if (output != null) {
                    output.close();
                }
            } catch (IOException e) {
                throw new FTPClientException("Couldn't close FileOutputStream.", e);
            }
        }
    }
    
    /**
     * 下载一个远程文件到指定的流
     * 处理完后记得关闭流
     * 
     * @param serverFile
     * @param output
     * @return
     * @throws FTPClientException
     */
    public boolean get(String serverFile, OutputStream output) throws FTPClientException {
        return get(serverFile, output, false);
    }
    
    /**
     * 下载一个远程文件到指定的流
     * 处理完后记得关闭流
     * 
     * @param serverFile
     * @param output
     * @param delFile
     * @return
     * @throws FTPClientException
     */
    public boolean get(String serverFile, OutputStream output, boolean delFile) throws FTPClientException {
        FTPClient ftpClient = null;
        try {
            ftpClient = getFTPClient();
            // 处理传输
            ftpClient.retrieveFile(serverFile, output);
            if (delFile) { // 删除远程文件
                ftpClient.deleteFile(serverFile);
            }
            return true;
        } catch (IOException e) {
            throw new FTPClientException("Couldn't get file from server.", e);
        } finally {
            if (ftpClient != null) {
                disconnect(ftpClient); //断开连接
            }
        }
    }
    
    /**
     * 从ftp服务器上删除一个文件
     * 
     * @param delFile
     * @return
     * @throws FTPClientException
     */
    public boolean delete(String delFile) throws FTPClientException {
        FTPClient ftpClient = null;
        try {
            ftpClient = getFTPClient();
            ftpClient.deleteFile(delFile);
            return true;
        } catch (IOException e) {
            throw new FTPClientException("Couldn't delete file from server.", e);
        } finally {
            if (ftpClient != null) {
                disconnect(ftpClient); //断开连接
            }
        }
    }
    
    /**
     * 批量删除
     * 
     * @param delFiles
     * @return
     * @throws FTPClientException
     */
    public boolean delete(String[] delFiles) throws FTPClientException {
        FTPClient ftpClient = null;
        try {
            ftpClient = getFTPClient();
            for (String s : delFiles) {
                ftpClient.deleteFile(s);
            }
            return true;
        } catch (IOException e) {
            throw new FTPClientException("Couldn't delete file from server.", e);
        } finally {
            if (ftpClient != null) {
                disconnect(ftpClient); //断开连接
            }
        }
    }

    /**
     * 列出远程默认目录下所有的文件
     * 
     * @return 远程默认目录下所有文件名的列表,目录不存在或者目录下没有文件时返回0长度的数组
     * @throws FTPClientException
     */
    public String[] listNames() throws FTPClientException {
        return listNames(null);
    }

    /**
     * 列出远程目录下所有的文件
     * 
     * @param remotePath 远程目录名
     * @return 远程目录下所有文件名的列表,目录不存在或者目录下没有文件时返回0长度的数组
     * @throws FTPClientException
     */
    public String[] listNames(String remotePath) throws FTPClientException {
        FTPClient ftpClient = null;
        try {
            ftpClient = getFTPClient();
            String[] listNames = ftpClient.listNames(remotePath);
            return listNames;
        } catch (IOException e) {
            throw new FTPClientException("列出远程目录下所有的文件时出现异常", e);
        } finally {
            if (ftpClient != null) {
                disconnect(ftpClient); //断开连接
            }
        }
    }

    public static void main(String[] args) throws FTPClientException {
        FTPClientTemplate ftp = new FTPClientTemplate();
        ftp.setHost("10.13.16.60");
        ftp.setPort(2121);
        ftp.setUsername("admin");
        ftp.setPassword("admin");
        ftp.setBinaryTransfer(true);
        ftp.setPassiveMode(true);
        ftp.setEncoding("utf-8");

        //ftp.get("/test_0920.zip", "d:/test_0920.zip");
        String[] aa = {"qqq/111.txt", "qqq/222.zip"};
        ftp.delete(aa);
    }
}

分享到:
评论

相关推荐

    基于Java的FTP客户端源代码

    总之,Java FTP客户端源代码提供了一个平台,让你可以利用Java的强大力量来实现文件的上传、下载和管理。通过学习和实践,你将能够掌握FTP通信的核心概念,并将这些知识应用到你的项目中,提升你的开发技能。

    java ftp客户端,服务端

    Java作为一种通用的、面向对象的编程语言,提供了丰富的库来支持FTP客户端和服务端的实现。 在Java中,我们可以使用`java.net.Socket`类来创建客户端连接,它代表了两台机器之间的网络连接。Socket编程是基于TCP/IP...

    java FTP客户端程序

    在这个“java FTP客户端程序”中,我们可以深入探讨如何使用Java来编写一个FTP客户端,以及涉及到的相关知识点。 首先,我们需要了解Java中的`java.net`和`java.io`这两个核心库,它们是实现FTP客户端的基础。`java...

    javaFTPclient.rar_Ftp客户端__ftp_ftp客户端_ftp客户端 java_java ftp客户端

    Java FTP 客户端是基于Java编程语言实现的FTP(File Transfer Protocol)应用程序,用于连接到FTP服务器并执行...如果要深入了解这个Java FTP客户端,你需要解压文件并查看其中的内容,或者查找相关的源代码和文档。

    ftp 客户端 源代码 java

    ftp 客户端代码 java Jftp.java

    ftp.zip_FTP客户端程序_ftp_ftp java_ftp客户端 java_java ftp客户端

    这个"ftp.java"源代码文件很可能是实现了以上功能的一个FTP客户端程序。通过阅读和理解源代码,开发者可以学习到如何在Java中构建一个基本的FTP客户端,并将其应用于实际的文件传输场景。同时,这也是一个很好的学习...

    ftp客户端11.rar_JAVA访问 FTP_ftp客户端_ftp客户端 java_java ftp客户端_java 上传下载

    在`ftpclient.txt`文件中,可能包含了一个简单的Java FTP客户端实现代码示例,演示了如何连接FTP服务器、上传和下载文件。通常,一个基本的FTP客户端程序会包含以下步骤: 1. 创建`FTPClient`对象。 2. 连接服务器,...

    Javaftp 客户端

    在实际项目中,JavaFTP客户端通常会封装成一个易于使用的类或服务,以供其他模块调用。例如,`JMyFtpClient`可能是一个自定义的FTP客户端实现,提供了简洁的接口供开发者进行文件操作。 总结来说,JavaFTP客户端是...

    java_ftp2.zip_FTP客户端程序_ftp_ftp java_ftp客户端 java_java ftp客户端

    为了深入理解并运行这个Java FTP客户端程序,你需要解压文件,查看源代码(如果存在),理解配置文件的格式,并根据需要配置服务器信息。如果你对Java编程和FTP协议有基础,那么分析和运行这个程序将会是一项有趣的...

    用java实现的ftp客户端代码

    一段用java实现的ftp客户端代码,是用来学习的好例子!!!

    FTP客户端java代码

    这是简单的FTP客户端的java代码 简单易学好用

    ftp.rar_FTP CLIENT_ftp java_ftp客户端_ftp客户端 java_客户端

    在这个"ftp.rar"压缩包中,我们关注的是一个用Java语言实现的FTP客户端。Java是一种跨平台的编程语言,它提供了丰富的库和API,使得开发FTP客户端成为可能。 FTP客户端是允许用户连接到FTP服务器并执行各种操作,...

    java实现的完整FTP客户端

    用java实现的ftp客户端,功能完善,可以实现上传、下载、新建远程文件夹、删除、修改远程目录等功能,端口号默认为20,可以在网络设置界面修改。底层采用socket传输数据。带源码,注释相当详细。

    FTP.rar_FTP 服务端_ftp 客户 端与 服务端_ftp客户端 java_java ftp客户端

    在本文中,我们将深入探讨FTP服务端、FTP客户端以及如何在Java环境中实现FTP客户端。 FTP服务端是运行在服务器上的软件,它接收来自客户端的连接请求,处理文件传输操作,并管理用户权限。在Java中,可以使用Apache...

    Java开发FTP客户端

    Java开发FTP客户端是一种常见的编程任务,它涉及到网络通信和文件操作等核心技能。FTP(File Transfer Protocol)是一种用于在网络上进行文件传输的标准协议,而使用Java来实现FTP客户端则需要掌握Java的Socket编程...

    FTP客户端的JAVA代码---网络课程设计

    1.实现一个图形用户界面的FTP客户端。 2.功能: 2.1 配置使用IIS的FTP服务器; 2.2 客户端发出各种操作命令;至少实现conn(连接)、list(列示文件)、retr(下载)、store(上载)的功能。 2.3 接收服务器的操作...

    JAVA swing (MVC)FTP客户端 (2)_javaftp客户端_familiarku3_

    此项目“JAVA Swing (MVC) FTP客户端”是基于Swing和FTP协议创建的一个桌面应用程序,它允许用户进行基本的FTP(File Transfer Protocol)操作,如上传、下载文件,并能展示上传和下载的速度。下面将详细解析这个...

    javaftp客户端源码.pdf

    总之,这段Java代码展示了如何使用内置的`FtpClient`实现一个简单的FTP客户端,执行基本的文件上传和下载任务。然而,为了在生产环境中构建可靠的FTP客户端,可能需要考虑更多的异常处理、错误报告、连接重试机制...

    Ftp.zip_ftp_java ftp客户端

    `FtpClient.java` 文件则可能包含了FTP客户端的代码,用于连接到FTP服务器并执行文件传输操作。Apache Commons Net库同样提供了FTPClient类,客户端可以使用它来建立连接,登录服务器,改变工作目录,上传和下载...

Global site tag (gtag.js) - Google Analytics