Java File list()方法
java.io.File.list(FilenameFilter filter) 返回的文件和目录由满足给定的过滤器这个抽象路径名指定的目录中的数组。如果给定的过滤器为null,所有的名字都接受。
1 语法
public String[] list(FilenameFilter filter)
2 参数
无
3 返回值
该方法返回的文件和目录由满足给定的过滤器这个抽象路径名指定的目录中的数组。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.File.list(FilenameFilter filter)方法的例子
*/
import java.io.File;
import java.io.FilenameFilter;
public class Demo implements FilenameFilter {
String str;
// constructor takes string argument
public Demo(String ext) {
str = "."+ext;
}
// main method
public static void main(String[] args) {
String[] paths;
File f = null;
try {
// create new file
f = new File("d:/test");
// create new filter
FilenameFilter filter = new Demo("txt");
// array of files and directory
paths = f.list(filter);
// 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();
}
}
@Override
public boolean accept(File dir, String name) {
return name.endsWith(str);
}
}
输出结果为:
hello.txt
热门文章
优秀文章