当前位置: 技术问答>java相关
java中如何读出一个目录下的所有文件和目录?
来源: 互联网 发布时间:2015-10-10
本文导语: rt | File file=new File(目录的绝对路径); File[] tempfile_list=file.listFiles(); tempfile_list数组中包括本目录下所有文件及目录。 | public void traverse(String existPath){ File path=new File(existPat...
rt
|
File file=new File(目录的绝对路径);
File[] tempfile_list=file.listFiles();
tempfile_list数组中包括本目录下所有文件及目录。
File[] tempfile_list=file.listFiles();
tempfile_list数组中包括本目录下所有文件及目录。
|
public void traverse(String existPath){
File path=new File(existPath);
File f2;
String[] str;
str=path.list();
for(int i=0;i
File path=new File(existPath);
File f2;
String[] str;
str=path.list();
for(int i=0;i