Java File list()方法
java.io.File.list() 返回的文件和目录在此抽象路径名指定的目录中的数组。如果抽象路径名不表示一个目录,该方法返回null。
1 语法
public String[] list()
2 参数
无
3 返回值
该方法在表示此抽象路径名的目录中返回的文件和目录的数组。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.list()方法的例子
*/
import java.io.File;
public class Demo {
public static void main(String[] args) {
File f = null;
String[] paths;
try {
// create new file
f = new File("d:/test");
// array of files and directory
paths = f.list();
// for each name in the path array
for(String path:paths) {
// prints filename and directory name
System.out.println(path);
}
} catch(Exception e) {
// if any error occurs
e.printStackTrace();
}
}
}
输出结果为:
hello
热门文章
优秀文章