This question already has answers here:
Best way to list files in Java, sorted by Date Modified?
(16个答案)
4年前关闭。
我有一系列文件。
我需要根据lastModified对它们进行排序。如何在Android中实现它。
(16个答案)
4年前关闭。
我有一系列文件。
File[] toSort = videoFiles.listFiles();
我需要根据lastModified对它们进行排序。如何在Android中实现它。
最佳答案
尝试类似的东西:
File[] toSort = videoFiles.listFiles();
Arrays.sort(toSort, new Comparator<File>(){
public int compare(File f1, File f2) {
return Long.valueOf(f1.lastModified()).compareTo(f2.lastModified());
}
});
关于java - 根据file.lastModified 对File []的数组进行排序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30667888/
10-10 11:28