`
yuancihang
  • 浏览: 145180 次
  • 性别: Icon_minigender_1
  • 来自: 洛阳
社区版块
存档分类
最新评论

使用FTP4J上传下载删除文件及文件夹

F# 
阅读更多

   使用ftp4j来操作ftp非常容易, 把我平时积累的FTP工具类拿出来和大家分享. 欢迎大家提出改进意见.

 

1. 依赖库

 ftp4j-1.5.jar

2. 共用方法

   上传下载方法需要引用的方法:

public static URL newURL(URL parentUrl, String child)throws MalformedURLException {
        String path = parentUrl.getPath();
        if(!path.endsWith("/")){
            path += "/";
        }
        path += child;
        return new URL(parentUrl, path);
    }

3. 下载文件

public static void download(URL url, String username, String password, File file){
        download(url, username, password, "UTF-8", file);
    }
    public static void download(URL url, String username, String password, String encoding, File file){
        FTPClient client = new FTPClient();
        client.setCharset(encoding);
        client.setType(FTPClient.TYPE_BINARY);
        //连接到指定的FTP服务器(域名或IP) 不指定端口,则使用默认端口21
        try {
            int port = url.getPort();
            if(port < 1){
                port = 21;
            }
            client.connect(url.getHost(), port);
            //登录验证
            client.login(username, password);
//            client.changeDirectory(url.getPath());
            client.download(url.getFile(), file);
            client.logout();
            //安全退出
            client.disconnect(true);
        } catch (Exception e) {
            logger.warn(e.getMessage(), e);
        }
    }

4. 下载文件夹

public static void downloadFolder(URL url, String username, String password, File folder){
        downloadFolder(url, username, password, "UTF-8", folder);
    }
    public static void downloadFolder(URL url, String username, String password, String encoding, File folder){
        FTPClient client = new FTPClient();
        client.setCharset(encoding);
        client.setType(FTPClient.TYPE_BINARY);
        //连接到指定的FTP服务器(域名或IP) 不指定端口,则使用默认端口21
        try {
            int port = url.getPort();
            if(port < 1){
                port = 21;
            }
            client.connect(url.getHost(), port);
            //登录验证
            client.login(username, password);
            downloadFolder(client, url, folder);
            client.logout();
            //安全退出
            client.disconnect(true);
        } catch (Exception e) {
            logger.warn(e.getMessage(), e);
        }
    }
    private static void downloadFolder(FTPClient client, URL url, File folder)throws Exception{
        client.changeDirectory(url.getPath());
        FTPFile[] ftpFiles = client.list();
        if(!folder.exists()){
            folder.mkdirs();
        }
        for(FTPFile ftpFile : ftpFiles){
            String name = ftpFile.getName();
            if(ftpFile.getType() == FTPFile.TYPE_FILE){
                client.changeDirectory(url.getPath());
                File f = new File(folder, name);
                client.download(name, f);
            }else if(ftpFile.getType() == FTPFile.TYPE_DIRECTORY){
                downloadFolder(client, newURL(url, name), new File(folder, name));
            }
        }
    }

5. 上传文件

public static void upload(URL url, String username, String password, File file){
        upload(url, username, password, "UTF-8", file);
    }
    public static void upload(URL url, String username, String password, String encoding, File file){
        FTPClient client = new FTPClient();
        client.setCharset(encoding);
        client.setType(FTPClient.TYPE_BINARY);
        //连接到指定的FTP服务器(域名或IP) 不指定端口,则使用默认端口21
        try {
            int port = url.getPort();
            if(port < 1){
                port = 21;
            }
            client.connect(url.getHost(), port);
            //登录验证
            client.login(username, password);
            client.changeDirectory(url.getPath());
            client.upload(file);
            client.logout();
            //安全退出
            client.disconnect(true);
        } catch (Exception e) {
            logger.warn(e.getMessage(), e);
        }
    }

6. 上传文件夹

public static void uploadFolder(URL url, String username, String password, File folder){
        uploadFolder(url, username, password, "UTF-8", folder);
    }
    public static void uploadFolder(URL url, String username, String password, String encoding, File folder){
        FTPClient client = new FTPClient();
        client.setCharset(encoding);
        client.setType(FTPClient.TYPE_BINARY);
        //连接到指定的FTP服务器(域名或IP) 不指定端口,则使用默认端口21
        try {
            int port = url.getPort();
            if(port < 1){
                port = 21;
            }
            client.connect(url.getHost(), port);
            //登录验证
            client.login(username, password);
            client.changeDirectory(url.getPath());
            String[] files = folder.list();
            for(String file : files){
                File f = new File(folder, file);
                if(f.isDirectory()){
                    uploadFolder(client, url, f);
                }else{
                    client.changeDirectory(url.getPath());
                    client.upload(f);
                }
            }
            client.logout();
            //安全退出
            client.disconnect(true);
        } catch (Exception e) {
            logger.warn(e.getMessage(), e);
        }
    }
    private static void uploadFolder(FTPClient client, URL parentUrl, File folder)throws Exception{
        client.changeDirectory(parentUrl.getPath());
        if(!existsFtpDir(client, folder.getName())){
            client.createDirectory(folder.getName());
        }
        client.changeDirectory(folder.getName());
       
        String[] fileList = folder.list();
        if(fileList == null){
            return ;
        }
       
        for(String file : fileList){
            File f = new File(folder, file);
            if(f.isDirectory()){
                uploadFolder(client, newURL(parentUrl, folder.getName()), f);
            }else if(f.isFile()){
                client.changeDirectory(parentUrl.getPath());
                client.changeDirectory(folder.getName());
                client.upload(f);
            }
        }
    }
   
    private static boolean existsFtpDir(FTPClient client, String dir)throws Exception{
        FTPFile[] ftpFiles = client.list();
        for(FTPFile ftpFile : ftpFiles){
            if((ftpFile.getType() == FTPFile.TYPE_DIRECTORY) && (dir.equals(ftpFile.getName()))){
                return true;
            }
        }
        return false;
    }

7. 判断是否存在文件或文件夹

public static boolean exists(URL url, String username, String password){
        return exists(url, username, password, "UTF-8");
       
    }
    public static boolean exists(URL url, String username, String password, String encoding){
        FTPClient client = new FTPClient();
        client.setCharset(encoding);
        client.setType(FTPClient.TYPE_BINARY);
        try {
            int port = url.getPort();
            if(port < 1){
                port = 21;
            }
            String[] welcome = client.connect(url.getHost(), port);
            logger.info("welcome = " + welcome.length);
            //登录验证
            client.login(username, password);
            String path = url.getPath();
            logger.info("path = " + path);
            if(path.indexOf(".") != -1){//文件
                int index = path.lastIndexOf("/");
                String p = path.substring(0, index);
                String f = path.substring(index + 1);
                logger.info("p = " + p + ", f = " + f);
                client.changeDirectory(p);
                FTPFile[] ftpFiles = client.list();
                for(FTPFile ftpFile : ftpFiles){
                    if((ftpFile.getType() == FTPFile.TYPE_FILE) && (ftpFile.getName().equals(f))){
                        return true;
                    }
                }
                return false;
            }else{//文件夹
                client.changeDirectory(path);
            }
            client.logout();
            //安全退出
            client.disconnect(true);
        } catch (Exception e) {
            logger.warn(e.getMessage(), e);
            return false;
        }
       
        return true;
    }

8. FTP服务器之间复制文件夹

public static void copyFolder(URL sourceUrl, String sourceUsername, String sourcePassword, String sourceEncoding, URL destUrl, String destUsername, String destPassword, String destEncoding, String tmpDir)throws IOException{
        downloadFolder(sourceUrl, sourceUsername, sourcePassword, sourceEncoding, new File(tmpDir));
        uploadFolder(destUrl, destUsername, destPassword, destEncoding, new File(tmpDir));
        FileUtil.deleteFolder(tmpDir);
    }
    public static void copyFolder(URL sourceUrl, String sourceUsername, String sourcePassword, URL destUrl, String destUsername, String destPassword, String tmpDir)throws IOException{
        copyFolder(sourceUrl, sourceUsername, sourcePassword, "UTF-8", destUrl, destUsername, destPassword, "UTF-8", tmpDir);
    }

9.删除文件

public static void delete(URL url, String username, String password){
        delete(url, username, password, "UTF-8");
    }
    public static void delete(URL url, String username, String password, String encoding){
        FTPClient client = new FTPClient();
        client.setCharset(encoding);
        client.setType(FTPClient.TYPE_BINARY);
        //连接到指定的FTP服务器(域名或IP) 不指定端口,则使用默认端口21
        try {
            int port = url.getPort();
            if(port < 1){
                port = 21;
            }
            client.connect(url.getHost(), port);
            //登录验证
            client.login(username, password);
            client.deleteFile(url.getPath());
            client.logout();
            //安全退出
            client.disconnect(true);
        } catch (Exception e) {
            logger.warn(e.getMessage(), e);
        }
    }

 

10. 简单用法

uploadFolder(new URL("ftp://localhost:21/test/"), "admin", "123", new File("d:/test"));
downloadFolder(new URL("ftp://localhost:21/test/"), "admin", "123", new File("d:/dbtest"));

分享到:
评论
2 楼 yuancihang 2011-02-20  
可以支持中文的, 你把错误贴出来
1 楼 brook19 2011-02-16  
这个可以支持中文的吗,为什么我一上传中文文件名的文件就报错?请问有什么解决办法!

相关推荐

    Android使用ftp方式实现文件上传和下载

    在 Android 中,FTP 客户端的实现需要使用到 FTPToolkit 类,该类提供了创建 FTP 连接、上传文件、下载文件、删除文件等功能。 ```java public class DownLoad { private FTPClient ftpClient; public void ...

    ftp4j-1.3.1下载

    可以将ftp4j嵌到你的Java应用中,来传输文件(包括上传和下载),浏览远程FTP服务器上的目录和文件,创建、删除、重命,移动远程目录和文件。ftp4j提供多种方式连接到远程FTP服务器包括:通过 TCP/IP直接连接,通过...

    java实现本地按照FTP服务器上目录结构创建文件夹下载文件

    FTP4j 是一个开源的Java库,用于执行FTP协议的操作,包括连接、登录、上传、下载、删除文件以及创建、删除目录等。使用FTP4j,开发者可以轻松地构建FTP客户端应用。 下面是一些关键知识点: 1. **FTP4j的基本使用*...

    调用FtpClient类上传文件(java)

    其他提及的jar文件(如ojdbc14.jar、jsp-api.jar、dom4j-1.6.1.jar、log4j-1.2.14.jar)可能与特定的应用场景有关,但不是直接用于FTP操作。 以下是一个简单的使用`FtpClient`上传文件的Java代码示例: ```java ...

    stm32下的ftp服务器

    6. **调试与测试**:使用FTP客户端(如FileZilla)连接到开发板,测试上传、下载、删除文件等功能。确保一切正常工作,没有数据丢失或错误。 7. **安全考虑**:虽然这是一个基本的FTP服务器实现,但安全性是不容...

    android ftp 客户端

    在实现这些功能时,开发者可能会使用Android的Socket编程API,或者第三方库如Apache Commons Net或FTP4j来简化FTP操作。同时,为了提供良好的用户体验,UI设计和错误处理机制也是必不可少的部分。 例如,"IShare...

    FTP客户端源代码

    FTP客户端源代码是一种用于与FTP(文件传输协议)服务器交互的应用程序,允许用户上传、下载文件或管理远程服务器上的文件。在本项目中,我们关注的是一个专为Windows平台设计的FTP客户端,它使用Java语言编写,并且...

    FTP配置指导

    为了进一步增强匿名用户的使用体验, 可以通过以下配置项允许匿名用户上传文件: - `anon_upload_enable=YES`: 允许匿名用户上传文件。 - `anon_mkdir_write_enable=YES`: 允许匿名用户创建新目录。 - `write_enable=...

    total commander一款实用的电脑工具

    例如,使用F3可以快速预览文件,F5进行复制,F6进行移动,F8进行删除,这些都极大地提高了工作效率。 3. **批量重命名**:Total Commander支持批量重命名文件,这对于整理大量文件或者按照特定规则命名文件非常有用...

    Mac下127个常用软件[参考].pdf

    * Captain FTP:FTP/SFTP 客户端软件,支持多线程下载和上传 * Cyberduck:免费 FTP/SFTP 客户端,支持中文和多种文字编码 图像和图标 * Can Combine Icons:将 Mac OS X 的 128x128 图标输出成 Windows 的 ico ...

    mavenproject工程列表说明1

    8. **FTP**: `ftpdemo`通过JSch库实现了FTP工具类,支持文件的上传、下载、创建文件夹、删除文件等操作,是远程文件操作的基础。 9. **HikariCP**: `hikaricpdemo`展示了如何使用HikariCP作为数据库连接池,它提供...

    JAVA上百实例源码以及开源项目源代码

    EJB中JNDI的使用源码例子 1个目标文件,JNDI的使用例子,有源代码,可以下载参考,JNDI的使用,初始化Context,它是连接JNDI树的起始点,查找你要的对象,打印找到的对象,关闭Context…… ftp文件传输 2个目标文件...

    LINUX最强归纳总结秘籍

    - 使用 FTP 客户端程序上传和下载文件。 **3.4.2 telnet** - 远程登录到另一台计算机进行管理。 **3.4.3 r-系列命令** - `rcp`:远程复制文件。 - `rlogin`:远程登录。 - `rexec`:远程执行命令。 #### 五、...

    120个C#辅助类.zip

    1. FTP操作类:这类辅助类提供了与FTP服务器交互的能力,包括上传、下载文件,创建和删除目录,列举远程目录内容等。它们通常封装了`System.Net.FtpWebRequest`和`FtpWebResponse`等.NET框架提供的FTP相关的类。 2....

    2021-2022计算机二级等级考试试题及答案No.5109.docx

    3. FTP(File Transfer Protocol)是一个文件传输协议,用于下载和上传文件。 4. 在.NET环境中,使用Response.Write(Server.HtmlEncode(""))可以对HTML进行编码,防止XSS攻击。 5. 浏览器的"后退"按钮可以返回前面...

    JAVA 范例大全 光盘 资源

    实例80 删除文件夹和文件 201 实例81 文件复制与移动 204 实例82 多种方式读取文件内容 209 实例83 多种方式写文件 213 实例84 随机访问文件 216 实例85 追加文件内容 219 实例86 文件锁定 220 实例87 分割与...

    UNIX操作系统培训教材

    - 文件夹内的文件和子文件夹构成分支。 **3.4 文件名称** - 文件名由字母、数字和部分特殊字符组成。 - 不区分大小写,但通常约定首字母大写表示系统文件。 **3.5 文件存取权限** - 每个文件都有读(read)、写...

    0.0商务正式版0.0

    6 或者访问Netzxadminszze.asp文件也可以进入后台(上传完后请在服务器删除Netzxadminszze.asp文件)*********非常重要 提示 ------------------------------------------------- 1 在win98系统上会出错 2 关闭...

Global site tag (gtag.js) - Google Analytics