public interface FilenameFilter
java.io.FilenameFilter |
实现此接口的类的实例用于过滤文件名。 这些实例用于过滤类File
的list
方法中的目录列表,以及Abstract Window Toolkit的文件对话框组件中的目录列表。
也可以看看:
Public methods |
|
---|---|
abstract boolean |
accept(File dir, String name) 测试指定的文件是否应包含在文件列表中。 |
boolean accept (File dir, String name)
测试指定的文件是否应包含在文件列表中。
Parameters | |
---|---|
dir |
File : the directory in which the file was found. |
name |
String : the name of the file. |
Returns | |
---|---|
boolean |
true if and only if the name should be included in the file list; false otherwise. |