使用Java JSch从SFTP服务器确定最新文件

时间:2016-11-17 14:11:06

标签: java sftp jsch

有没有办法使用Java JSch确定Unix SFTP服务器上最新文件的名称?

我想将最新文件从服务器复制到本地计算机。我已经有了一个工作代码。但我无法确定最新的文件。该文件夹包含以下格式的许多文件:

Some Report dd/MM/yyyy hh:ss

我尝试了this post中提到的代码,但它没有拿起最新的文件。此外,代码似乎永远不会停止执行。

任何帮助都将不胜感激。

5 个答案:

答案 0 :(得分:1)

我的解决方案基于Finding file size and last modified of SFTP oldest file using Java中发布的代码,并进行了以下修改:

  • 更改nextTimecurrentOldestTimeif (nextTime < currentOldestTime)if (nextTime > currentOldestTime)的比较。现在这会收集最新的文件。

答案 1 :(得分:0)

根据你提到的帖子this post

有代码行表示仅过滤xml文件,您是否已将其更改为检查所有文件格式

list = Main.chanSftp.ls("*.xml");

还有一个睡眠方法调用执行线程1分钟

Thread.sleep(60000);

所以期待代码至少运行一分钟

这可能会有所帮助

答案 2 :(得分:0)

以下是使用jsch将leatest文件从远程服务器复制到本地的工作程序:

package com.poc.client;

import java.util.Vector;

import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.ChannelSftp.LsEntry;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.JSchException;
import com.jcraft.jsch.Session;
import com.jcraft.jsch.SftpATTRS;
import com.jcraft.jsch.SftpException;

public class CopyFileRemoteToLocal {

    public static void main(String[] args) {
        String hostname = "hostName";
        String username = "userName";
        String password = "password";
        String copyFrom = "serverFilePath";
        String copyTo = "LocalFilePath"; 
        JSch jsch = new JSch();
        Session session = null;
        System.out.println("Trying to connect.....");
        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; 
            Vector<LsEntry> vector = (Vector<LsEntry>) sftpChannel.ls(copyFrom);
            ChannelSftp.LsEntry list = vector.get(0);
            String oldestFile =list.getFilename();
            SftpATTRS attrs=list.getAttrs();
            int currentOldestTime =attrs.getMTime();
            String nextName=null;
            LsEntry lsEntry=null;
            int nextTime;
            for (Object sftpFile : vector) {
                lsEntry = (ChannelSftp.LsEntry) sftpFile;
                nextName = lsEntry.getFilename();
                attrs = lsEntry.getAttrs();
                nextTime = attrs.getMTime();
                if (nextTime > currentOldestTime) {
                    oldestFile = nextName;
                    currentOldestTime = nextTime;
                }
            }

            System.out.println("File name is ...."+oldestFile);
            sftpChannel.get(copyFrom+oldestFile, copyTo);
            sftpChannel.exit();
            session.disconnect();
        } catch (JSchException e) {
            e.printStackTrace();  
        } catch (SftpException e) {
            e.printStackTrace();
        }

        System.out.println("Done !!");
    }

}

答案 3 :(得分:0)

ChannelSftp.LsEntry lastModifiedEntry = Collections.max(list,(Comparator。 compareInt(character1-> character1.getAttrs()。getMTim​​e()) .thenComparingInt(character2-> character2.getAttrs()。getMTim​​e())));

您可以在文件夹中获取最后修改的条目。

答案 4 :(得分:0)

这可以用Collections或stream来完成,因为channelSftp.ls返回LsEntry的Vector,而Vector.class与Java-Collections具有完全的竞争力:

Vector<LsEntry> list = channelSftp.ls(filePath + "*.txt");
ChannelSftp.LsEntry lastModifiedEntry = Collections.max(list,
    (Comparator.comparingInt(entry-> entry.getAttrs().getMTime()))
);

LsEntry lastModifiedEntry = list.stream().max(
    Comparator.comparingInt(entry -> entry.getAttrs().getMTime())
).get();