使用apache commons将多个文件FTP到本地目录中

Err*_*ion 1 java apache ftp-client

我试图使用像这样的apache commons将目录中的所有文件下载到我的本地机器:

import java.io.FileOutputStream;
import org.apache.commons.net.ftp.FTPClient;
import java.io.IOException;
import java.net.SocketException;
import org.apache.commons.net.ftp.FTPFile;

public class FTPExample {
    public static void main(String[] args) throws SocketException, IOException {
        FTPClient client = new FTPClient();
        client.connect("MyHostName");
        client.enterLocalPassiveMode();
        client.login("username", "password");
        FTPFile[] files = client.listFiles("/App/");
        for (FTPFile file : files) {
            System.out.println(file.getName());
          FileOutputStream fos = new FileOutputStream("Ftp Files/"  + file.getName());
            client.retrieveFile(file.getName(),fos);             
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

能够列出目录中的文件,但我在尝试下载文件时遇到FilenotFound异常.请帮忙.我的错误是:

Exception in thread "main" java.io.FileNotFoundException: Ftp Files\01 (The system cannot find the path specified)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:212)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:104)
    at ftpexample.FTPExample.main(FTPExample.java:30)
Java Result: 1
Run Code Online (Sandbox Code Playgroud)

编辑:我需要将文件存储在文件夹Ftp文件/中的原始文件名中.

Err*_*ion 7

感谢那些试图帮助的人.我在这里找到了问题的答案.这是我怎么做的:

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.OutputStream;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;


public class FTPExample {

    public static void main(String[] args) {
        try {

            //new ftp client
            FTPClient ftp = new FTPClient();
            //try to connect
            ftp.connect("MyHhostName");
            //login to server
            if (!ftp.login("username", "password")) {
                ftp.logout();
            }
            int reply = ftp.getReplyCode();
            //FTPReply stores a set of constants for FTP reply codes. 
            if (!FTPReply.isPositiveCompletion(reply)) {
                ftp.disconnect();
            }

            //enter passive mode
            ftp.enterLocalPassiveMode();
            //get system name
            System.out.println("Remote system is " + ftp.getSystemType());
            //change current directory
            ftp.changeWorkingDirectory("/App/PMIGENV/BACK/Finacle/FC/app/CDCI_LOGS/log/UBSADMIN");
            System.out.println("Current directory is " + ftp.printWorkingDirectory());

            //get list of filenames
            FTPFile[] ftpFiles = ftp.listFiles();

            if (ftpFiles != null && ftpFiles.length > 0) {
                //loop thru files
                for (FTPFile file : ftpFiles) {
                    if (!file.isFile()) {
                        continue;
                    }
                    System.out.println("File is " + file.getName());
                    //get output stream
                    OutputStream output;
                    output = new FileOutputStream("FtpFiles" + "/" + file.getName());
                    //get the file from the remote system
                    ftp.retrieveFile(file.getName(), output);
                    //close output stream
                    output.close();

                    //delete the file
                    // ftp.deleteFile(file.getName());

                }
            }

            ftp.logout();
            ftp.disconnect();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}
Run Code Online (Sandbox Code Playgroud)