0

大家好,我正在尝试创建一个小脚本,让我可以通过 sftp 将所有具有特定扩展名的文件从远程 linux 机器复制到本地机器。

这是我到目前为止的代码,如果我给出完整路径,它可以让我使用 Jsch 将一个文件从远程机器复制到我的本地机器。

package transfer;

import com.jcraft.jsch.*;
import java.io.File;
import java.io.FilenameFilter;
import java.util.Scanner;

public class CopyFromServer {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);

        System.out.println("Please enter the hostname or ip of the server on which the ctk files can be found: ");
        String hostname = sc.nextLine();
        System.out.println("Please enter your username: ");
        String username = sc.nextLine();
        System.out.println("Please enter your password: ");
        String password = sc.nextLine();
        System.out.println("Please enter the location where your files can be found: ");
        String copyFrom = sc.nextLine();
        System.out.println("Please enter the location where you want to place your files: ");
        String copyTo = sc.nextLine();

        JSch jsch = new JSch();
        Session session = null;
        try {
            session = jsch.getSession(username, hostname, 22);
            session.setConfig("StrictHostKeyChecking", "no");
            session.setPassword(password);
            session.connect();

            Channel channel = session.openChannel("sftp");
            channel.connect();
            ChannelSftp sftpChannel = (ChannelSftp) channel;

            sftpChannel.get(copyFrom, copyTo);
            sftpChannel.exit();
            session.disconnect();
        } catch (JSchException e) {
            e.printStackTrace();  
        } catch (SftpException e) {
            e.printStackTrace();
        }
    }
}

我希望复制特定文件夹中所有扩展名为“.jpg”的文件,并将其放置在用户定义的文件夹中。

我试过了:

sftpChannel.get(copyFrom + "*.jpg", copyTo);

哪个不起作用,我知道我应该使用类似的东西:

pathname.getName().endsWith("." + fileType)

但我不确定如何使用 sftpChannel 来实现它。

4

1 回答 1

1

您必须使用sftpChannel.ls("Path to dir");which 将给定路径中的文件列表作为向量返回,并且您必须迭代向量以下载每个文件sftpChannel.get();

Vector<ChannelSftp.LsEntry> list = sftpChannel .ls("."); 
    // iterate through objects in list, and check for extension
    for (ChannelSftp.LsEntry listEntry : list) {
            sftpChannel.get(listEntry.getFilename(), "fileName"); 

        }
    }
于 2013-09-16T15:12:58.763 回答