Skip to content

Instantly share code, notes, and snippets.

@pram
Last active December 25, 2015 04:28
Show Gist options
  • Save pram/6917137 to your computer and use it in GitHub Desktop.
Save pram/6917137 to your computer and use it in GitHub Desktop.
Create Java File Filter
private static FilenameFilter generateFilter() {
return new FilenameFilter() {
public boolean accept(File dir, String filename) {
return filename.toLowerCase().endsWith(".xml");
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment