@Deprecated public class WildcardFilter extends AbstractFileFilter implements java.io.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]);
}
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID
Deprecated.
|
private java.lang.String[] |
wildcards
Deprecated.
The wildcards that will be used to match filenames.
|
| Constructor and Description |
|---|
WildcardFilter(java.util.List<java.lang.String> wildcards)
Deprecated.
Construct a new case-sensitive wildcard filter for a list of wildcards.
|
WildcardFilter(java.lang.String wildcard)
Deprecated.
Construct a new case-sensitive wildcard filter for a single wildcard.
|
WildcardFilter(java.lang.String[] wildcards)
Deprecated.
Construct a new case-sensitive wildcard filter for an array of wildcards.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(java.io.File file)
Deprecated.
Checks to see if the filename matches one of the wildcards.
|
boolean |
accept(java.io.File dir,
java.lang.String name)
Deprecated.
Checks to see if the filename matches one of the wildcards.
|
toStringprivate static final long serialVersionUID
private final java.lang.String[] wildcards
public WildcardFilter(java.lang.String wildcard)
wildcard - the wildcard to matchjava.lang.IllegalArgumentException - if the pattern is nullpublic WildcardFilter(java.lang.String[] wildcards)
wildcards - the array of wildcards to matchjava.lang.IllegalArgumentException - if the pattern array is nullpublic WildcardFilter(java.util.List<java.lang.String> wildcards)
wildcards - the list of wildcards to matchjava.lang.IllegalArgumentException - if the pattern list is nulljava.lang.ClassCastException - if the list does not contain Stringspublic boolean accept(java.io.File dir,
java.lang.String name)
accept in interface java.io.FilenameFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterdir - the file directoryname - the filenamepublic boolean accept(java.io.File file)
accept in interface java.io.FileFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterfile - the file to checkCopyright (c) 2002-2016 Apache Software Foundation