我正在尝试使用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];
}
答案 0 :(得分:1)
由于Vector.class与Java-Collections具有完全的竞争力,因此可以用Collections或stream来完成:
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();