@Deprecated public class WildcardFilter extends AbstractFileFilter implements Serializable
This filter selects files, but not directories, based on one or more wildcards and using case-sensitive comparison.
The wildcard matcher uses the characters '?' and '*' to represent a
single or multiple wildcard characters.
This is the same as often found on Dos/Unix command lines.
The extension check is case-sensitive.
See FilenameUtils.wildcardMatch(String, String) for more information.
For example:
File dir = new File(".");
FileFilter fileFilter = new WildcardFilter("*test*.java~*~");
File[] files = dir.listFiles(fileFilter);
for (int i = 0; i < files.length; i++) {
System.out.println(files[i]);
}
| 构造器和说明 |
|---|
WildcardFilter(List<String> wildcards)
已过时。
Construct a new case-sensitive wildcard filter for a list of wildcards.
|
WildcardFilter(String wildcard)
已过时。
Construct a new case-sensitive wildcard filter for a single wildcard.
|
WildcardFilter(String[] wildcards)
已过时。
Construct a new case-sensitive wildcard filter for an array of wildcards.
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
accept(File file)
已过时。
Checks to see if the filename matches one of the wildcards.
|
boolean |
accept(File dir,
String name)
已过时。
Checks to see if the filename matches one of the wildcards.
|
toStringpublic WildcardFilter(String wildcard)
wildcard - the wildcard to matchIllegalArgumentException - if the pattern is nullpublic WildcardFilter(String[] wildcards)
wildcards - the array of wildcards to matchIllegalArgumentException - if the pattern array is nullpublic WildcardFilter(List<String> wildcards)
wildcards - the list of wildcards to matchIllegalArgumentException - if the pattern list is nullClassCastException - if the list does not contain Stringspublic boolean accept(File dir, String name)
accept 在接口中 FilenameFilteraccept 在接口中 IOFileFilteraccept 在类中 AbstractFileFilterdir - the file directoryname - the filenamepublic boolean accept(File file)
accept 在接口中 FileFilteraccept 在接口中 IOFileFilteraccept 在类中 AbstractFileFilterfile - the file to check