一聚教程网:一个值得你收藏的教程网站

热门教程

java遍历目录二种方法

时间:2022-11-14 23:25:44 编辑:袖梨 来源:一聚教程网

我是通过分割字符串来求得其所有子目录相对于根目录的深度,然后再减去输入目录相对于根目录的深度,就得到了输入目录的深度

方法一

import java.io.file;
import java.util.arraylist;
public class filesystem1 {
private static arraylist filelist = new arraylist();
public static void main(string[] args) {
long a = system.currenttimemillis();
refreshfilelist("c:java");
system.out.println(system.currenttimemillis() - a);
}
public static void refreshfilelist(string strpath) {
file dir = new file(strpath);
file[] files = dir.listfiles();
if (files == null)
return;
for (int i = 0; i < files.length; i++) {
if (files[i].isdirectory()) {
refreshfilelist(files[i].getabsolutepath());
} else {
string strfilename = files[i].getabsolutepath().tolowercase();
system.out.println("---"+strfilename);
filelist.add(files[i].getabsolutepath());
}
}
}
}


方法二

public static void printdirectory(file f,int depth){
if(!f.isdirectory()){//如果不是目录,则打印输出
system.out.println(gettap(depth)+f.getname());
}else{
file[] fs=f.listfiles();
system.out.println(gettap(depth)+f.getname());
depth++;
for(int i=0;i file file=fs[i];
printdirectory(file,depth);
}
}
}


其中gettap方法是辅助方法,目的是使输出具有一定的层次关系,方法定义如下:

private static string gettap(int depth){
stringbuffer tap=new stringbuffer();
for(int i=0;i tap.append("------");
}
return tap.tostring();
}


public static void main(string[] args){
file f=new file("test");
printdirectory(f,0);
}


test
------11
------------111
------------------1111.txt
------------------1112.txt
------------112.txt
------12
------------123.txt
------13.txt

总结问题

问题一:java中遍历目录时,总是转化成文件数组,但是如果目录下文件超过10万个,这时就容易死机?有没有更好的办法,听说c++提供了更好的办法,java中我没找到?

问题二:,java中,能不能遍历目录下特定类型的文件??比如我只遍历 *.jpg的文件。

热门栏目