For example: the following code will create a filter that filters out all files except those that end in ".jpg" and ".tif":
DefaultFileFilter filter = new DefaultFileFilter(); filter.addExtension("jpg"); filter.addExtension("tif");Note that "." or "*." before the extension is not needed and will be removed.
|
|