gpt4 book ai didi

java - 如何在Java中使用SFTP获取目录的最新文件?

转载 作者:行者123 更新时间:2023-12-02 13:41:38 24 4
gpt4 key购买 nike

我正在尝试使用 SFTP 获取目录的最新文件。当目录中只有一个文件时,下面的代码给出了正确的最新文件。如果一段时间后在目录中创建了一个新文件,如果我再次运行下面的代码,它不会给出正确的最新文件,而是返回相同的旧文件。(为了运行下面的代码,我使用计时器调度程序)。

//to have List of all the files of particular directory
List<File> files1 = new ArrayList<File>();
Vector<LsEntry> files = sftpChannel.ls(filePath+"*.csv");

for (LsEntry entry : files)
{
if (!entry.getFilename().equals(".") && !entry.getFilename().equals(".."))
{

File f=new File(entry.getFilename());
files1.add(f);

}
}

System.out.println("files length "+files1.size());
File[] files2=files1.toArray(new File[files1.size()]);
long lastMod = Long.MIN_VALUE;
File choice = null;
for (File file : files2) {
if (file.lastModified() > lastMod) {
choice = file;
lastMod = file.lastModified();
}
}
lastModifiedFile=choice;

我什至尝试使用下面的代码。它也没有提供正确的最新文件。

if (files2.length > 0) {
//** The newest file comes first
Arrays.sort(files2, LastModifiedFileComparator.LASTMODIFIED_REVERSE);
lastModifiedFile = files2[0];
}

最佳答案

可以使用集合或流来完成,因为 Vector.class 与 Java 集合完全兼容:

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

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

关于java - 如何在Java中使用SFTP获取目录的最新文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50266354/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com