如何实现java对本机文件进行分页显示

2024-11-30 13:27:18
推荐回答(2个)
回答1:

public Map getFileList(String path, int from, int to) {
Map map = new HashMap<>();
List fileList = new ArrayList<>();
int total = 0;
if(new File(path).exists()){
File[] fileArr = new File(path).listFiles();
if (fileArr != null && fileArr.length > 0) {
total = fileArr.length;
if (to >= fileList.size()) {
to = fileList.size();
}
for (int i = from; i < to; i++) {
fileList.add(fileList.get(i));
}
}
}
map.put("total", total);
map.put("fileList", fileList);
return map;
}

回答2:

public Map getFileList(String path, int from, int to) {
Map map = new HashMap<>();
List fileList = new ArrayList<>();
int total = 0;
if(new File(path).exists()){
File[] fileArr = new File(path).listFiles();
if (fileArr != null && fileArr.length > 0) {
total = fileArr.length;
if (to >= fileArr.length) {
to = fileArr.length;
}
for (int i = from; i < to; i++) {
fileList.add(fileArr[i].getPath());
}
}
}
map.put("total", total);
map.put("fileList", fileList);
return map;
}