Most visited

Recently visited

Added in API level 1

FilenameFilter

public interface FilenameFilter

java.io.FilenameFilter


实现此接口的类的实例用于过滤文件名。 这些实例用于过滤类Filelist方法中的目录列表,以及Abstract Window Toolkit的文件对话框组件中的目录列表。

也可以看看:

Summary

Public methods

abstract boolean accept(File dir, String name)

测试指定的文件是否应包含在文件列表中。

Public methods

accept

Added in API level 1
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.

Hooray!