`
行者买刀
  • 浏览: 194223 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

利用FtpClient实现上传下载及获得文件目录

阅读更多

    sun代码中有个FtpClient,虽然没有把它用做公开的工具包,但我们也还是可以拿它来利用一下.

 

/**
 * FTP文件上传与下载
 * notice:
 * 之所以每次都要连接一次ftp是让它的目录重新返回到相对的根目录,
 * 如果复用上次的FtpClient则可能它当前在FTP的目录不是我们想要的
 * 目录,所以在FTP上传下载文件时,最好每次都重新登录一下FTP
 * @author lgh
 */
public class FTPClient {

    private FtpClient ftpClient;
    private String ip;
    private int port;
    private String username;
    private String password;

    public FTPClient() {
    }

    public FTPClient(String ip, int port, String username, String password) {
        this.ip = ip;
        this.port = port;
        this.username = username;
        this.password = password;
    }

    /**
     * 需要备份的文件
     * @param list
     * @return
     */
    private List needBackFile(List list, String relativeName) {
        List fileNames = new ArrayList();
        for (int i = 0; i < list.size(); i++) {
            String temp = (String) list.get(i);
            if (temp.indexOf(relativeName) > 0) {
                fileNames.add(temp);
            }
        }
        return fileNames;
    }

    public static void main(String[] args) {
        FTPClient client = new FTPClient(".....", 21, "...", "....");

        try {
//            client.downloadFile("CRM/ccbcrm/", "D://", "CRMClientLog.log", "CRMClientLog.log");
//            client.uploadFile("", "D://", "CRMClientLog.log");
            List list = client.getList("csrtestftp/网络/", false);
        } catch (Exception ex) {
            Logger.getLogger(FTPClient.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

    /**
     * 关闭FTP连接 
     * @throws java.lang.Exception
     */
    public void closeServer() throws Exception {
        ftpClient.closeServer();
    }

    /**
     * 连接ftp服务器
     * @param ip
     * @param port
     * @param user
     * @param pwd
     * @return
     * @throws Exception
     */
    public boolean connectServer(String ip, int port, String user, String pwd)
            throws Exception {
        boolean isSuccess = false;
        try {
            ftpClient = new FtpClient();
            ftpClient.openServer(ip, port);
            ftpClient.login(user, pwd);
            isSuccess = true;
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return isSuccess;
    }

    /**
     * 获得远程下的目录
     * @param remotePath 远程目录
     * @param fullPath 是否需要完整路径
     * @return
     */
    public List getList(String remotePath, boolean fullPath) {
        List list = new ArrayList();
        try {
            if (connectServer(ip, port, username, password)) {
                BufferedReader br = new BufferedReader(new InputStreamReader(ftpClient.nameList(remotePath)));
                String temp = ftpClient.getResponseString();
                System.out.println(temp);
                String readLine = null;
                int lastIndex;
                if ((lastIndex = remotePath.lastIndexOf("/")) > 0||(lastIndex = remotePath.lastIndexOf("//")) > 0
                    ||(lastIndex = remotePath.lastIndexOf("\\")) > 0||(lastIndex = remotePath.lastIndexOf(File.separator)) > 0) {
                    remotePath = remotePath.substring(0, lastIndex);
                }   //去掉remotePath的后缀,可能是'/',也有可能是其他符号
                while ((readLine = br.readLine()) != null) {

                    if (!fullPath) {
                        list.add(readLine.substring(remotePath.length() + 1, readLine.length()));
                        System.out.println(readLine.substring(remotePath.length() + 1, readLine.length()));
                    } else {
                        list.add(readLine);
                        System.out.println(readLine);
                    }
                }
                ftpClient.closeServer();
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return list;
    }

    /**
     * 下载文件
     * @param remotePath
     * @param localPath
     * @param filename
     * @throws Exception
     */
    public void downloadFile(String remotePath, String localPath, String remoteFileName, String localFileName) throws Exception {
        try {
            if (connectServer(ip, port, username, password)) {
                if (remotePath.length() != 0) {
                    ftpClient.cd(remotePath);
                }
                ftpClient.binary();
                TelnetInputStream is = ftpClient.get(remoteFileName);
                File fp = new File(localPath);
                if (!fp.exists()) {
                    fp.mkdirs();
                }
                File file_out = new File(localPath + File.separator + localFileName);
                FileOutputStream os = new FileOutputStream(file_out);
                byte[] bytes = new byte[1024];
                int readBye;
                while ((readBye = is.read(bytes)) != -1) {
                    os.write(bytes, 0, readBye);
                }
                is.close();
                os.close();
                ftpClient.closeServer();
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

    /**
     * 上传文件
     * @param remotePath
     * @param localPath
     * @param filename
     * @throws Exception
     */
    public void uploadFile(String remotePath, String localPath, String filename) throws Exception {
        try {
            if (connectServer(ip, port, username, password)) {
                if (remotePath.length() != 0) {
                    ftpClient.cd(remotePath);
                }
                ftpClient.binary();
                TelnetOutputStream os = ftpClient.put(filename);
                File file_in = new File(localPath + File.separator + filename);
                FileInputStream is = new FileInputStream(file_in);
                byte[] bytes = new byte[1024];
                int readBye;
                while ((readBye = is.read(bytes)) != -1) {
                    os.write(bytes, 0, readBye);
                }
                is.close();
                os.close();
                ftpClient.closeServer();
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

    /**
     * @return the ip
     */
    public String getIp() {
        return ip;
    }

    /**
     * @param ip the ip to set
     */
    public void setIp(String ip) {
        this.ip = ip;
    }

    /**
     * @return the port
     */
    public int getPort() {
        return port;
    }

    /**
     * @param port the port to set
     */
    public void setPort(int port) {
        this.port = port;
    }

    /**
     * @return the username
     */
    public String getUsername() {
        return username;
    }

    /**
     * @param username the username to set
     */
    public void setUsername(String username) {
        this.username = username;
    }

    /**
     * @return the password
     */
    public String getPassword() {
        return password;
    }

    /**
     * @param password the password to set
     */
    public void setPassword(String password) {
        this.password = password;
    }
}

 

分享到:
评论
1 楼 xiaoyu64814361 2009-05-26  
老兄,别拿乱码的东西出来忽悠人···

相关推荐

    java利用FTPClient实现上传下载文件.doc

    Java 中使用 FTPClient 实现上传下载文件 Java 中使用 FTPClient 实现上传下载文件是 Java 程序中经常需要和 FTP 打交道的重要内容。FTPClient 是 Jakarta Commons 中的一个工具类,位于 Commons Net 包中。...

    使用FTPClient实现文件的上传下载

    这篇博客“使用FTPClient实现文件的上传下载”显然关注的是如何利用编程接口FTPClient来执行FTP操作,如上传和下载文件。FTPClient是Apache Commons Net库的一部分,它为Java开发者提供了方便的API来实现FTP功能。 ...

    java FTPClient 文件上传下载文件

    对于Java开发者来说,利用Java的FTPClient进行文件的上传和下载是常见的需求之一。本篇文章将围绕如何使用Java中的`FTPClient`库来实现文件的上传与下载操作展开详细介绍。 #### 二、Java FTPClient 库介绍 `...

    使用FTPClient实现ftp文件上传

    在本文中,我们将深入探讨如何使用FTPClient来实现FTP文件上传,特别是处理中文文件名的上传问题。 FTP是一种广泛使用的互联网协议,允许用户在两台计算机之间传输文件。在Java中,我们可以利用Apache Commons Net...

    FTPClient (c#源码,ftp文件下载,上传等)

    FTPClient是基于C#编程语言实现的一个FTP(File Transfer Protocol)客户端库,它允许开发者通过编程方式执行FTP文件上传、下载以及其他与FTP服务器交互的操作。在这个项目中,`FtpClientCS`很可能是包含了实现这些...

    ftpclient

    4. **文件上传与下载**:这是FTP的主要用途,FTPClient提供了上传本地文件到服务器,以及从服务器下载文件到本地的功能。 5. **数据传输模式**:FTP有两种数据传输模式,主动(PORT)模式和被动(PASV)模式。...

    System.Net.FtpClient

    - `FtpClient.cs`:实现了IFtpClient接口,是库的主要类,包含了FTP会话管理、登录验证、文件上传下载、目录操作等方法。 - `IFtpClient.cs`:定义了FtpClient的接口,使得其他类可以模拟FtpClient的行为,便于测试...

    JAVA中使用FTPClient实现文件上传下载

    在JAVA程序中,经常需要和FTP打交道,比如向FTP服务器上传文件、下载文件,本文简单介绍如何利用jakarta commons中的FTPClient(在commons-net包中)实现上传下载文件。  一、上传文件  原理不介绍了,大家直接...

    QT实现FTPServer和FTPClient.zip

    4. **获取文件列表**:使用`listInfo()`或`cd()`函数可以获取服务器上的目录结构,便于选择需要下载的文件。 5. **下载文件**:调用`get()`函数,指定远程文件路径和本地保存路径,开始下载文件。 6. **监控进度和...

    利用ftp协议进行文件的上传下载

    在本文中,我们将深入探讨如何利用Apache的FTPClient库在Java环境中实现FTP文件的上传与下载功能,并简要介绍如何设置FTP服务器进行测试。 1. FTP协议基础: FTP基于TCP/IP协议族,提供了双向通信,允许客户端和...

    FtpClient FTP 操作类

    除了基本的上传和下载,`FtpClient`还提供了其他功能,如文件列表查询、目录操作、文件属性获取与修改、断点续传、文件权限管理等。例如,我们可以使用`GetListing`获取远程目录的文件列表,使用`CreateDirectory`...

    C#+WinForm+FluentFTP实现文件上传下载功能实例

    通过WinForm调用FluentFTP库,实现FTP客户端,具体可参考本人博客【C# 利用FluentFTP实现FTP上传下载功能】 开发工具:VisualStudio2022 开发语言:C# 开发框架:.Net Framework4.8及以上

    FTPClient(MFC)

    总结起来,FTPClient(MFC)是一个利用MFC库实现的FTP客户端应用,具备基本的FTP功能,如目录浏览、文件上传和下载。通过MFC的特性,它为用户提供了一个友好且功能齐全的交互界面,同时处理网络通信和文件操作,确保...

    FTPCLIENT客户端

    FTP是一种用于在互联网上传输文件的标准协议,而FTPCLIENT则是实现了这一协议的用户界面工具,允许用户与FTP服务器进行交互,实现文件的上传、下载、查看、删除等操作。以下是关于FTPCLIENT客户端及其相关知识点的...

    FTPUtil.vb 利用Socket 实现FTP文件上传和文件下载

    FTPUtil.vb是一个VB.NET编写的实用工具,它利用Socket编程接口实现了FTP(File Transfer Protocol)文件上传和下载的功能。FTP是一种广泛应用于互联网上的协议,主要用于在客户端与服务器之间进行文件传输。Socket是...

    apache java ftpclient

    通过这些知识点,开发者可以有效地利用Apache的Java FTPClient库在Java应用中实现FTP功能,与FTP服务器进行高效、安全的文件交互。记得在实际项目中,根据需求调整配置,确保FTP操作的可靠性和安全性。

    java+jsp代码实现从FTP服务器上传下载文件

    根据给定的信息,本文将详细解释如何利用Java与JSP技术来实现从FTP服务器上传下载文件的功能,并且会对部分给出的代码片段进行解读。 ### Java + JSP 实现 FTP 文件上传下载 #### 一、JSP 页面代码实现 在JSP页面...

    C#对Ftp各种操作,上传,下载,删除文件,创建目录,删除目录

    本文将详细介绍如何使用C#语言实现对FTP服务器的各种基本操作,包括上传文件、下载文件、删除文件、创建目录、删除目录等功能。 #### 二、基础知识准备 在开始编写代码之前,我们需要了解一些基础概念和技术栈: ...

    利用PSFTP工具实现文件上传详解.zip

    "利用PSFTP工具实现文件上传详解.zip"这个资源提供了一种通过PSFTP工具进行文件上传的方法,同时也包含了一个使用Java编程语言实现文件上传下载的示例。下面我们将深入探讨这两个主题。 首先,PSFTP(PuTTY Secure ...

Global site tag (gtag.js) - Google Analytics