Suffix FileFilter : File Chooser « Swing JFC « Java






Suffix FileFilter

    

/*
 * Project: Gulden Utilies
 * Class:   de.gulden.util.swing.SuffixFileFilter
 * Version: snapshot-beautyj-1.1
 *
 * Date:    2004-09-29
 *
 * This is a snapshot version of the Gulden Utilities,
 * it is not released as a seperate version.
 *  
 * Note:    Contains auto-generated Javadoc comments created by BeautyJ.
 *  
 * This is licensed under the GNU Lesser General Public License (LGPL)
 * and comes with NO WARRANTY.
 *
 * Author:  Jens Gulden
 * Email:   amoda@jensgulden.de
 */


import java.io.File;
import java.util.*;
import javax.swing.filechooser.FileFilter;

/**
 * Class SuffixFileFilter.
 *  
 * @author  Jens Gulden
 * @version  snapshot-beautyj-1.1
 */
public class SuffixFileFilter extends FileFilter {

    // ------------------------------------------------------------------------
    // --- fields                                                           ---
    // ------------------------------------------------------------------------

    /**
     * The suffix.
     */
    protected String suffix;

    /**
     * The description.
     */
    protected String description;


    // ------------------------------------------------------------------------
    // --- constructors                                                     ---
    // ------------------------------------------------------------------------

    /**
     * Creates a new instance of SuffixFileFilter.
     */
    public SuffixFileFilter() {
        super();
    }

    /**
     * Creates a new instance of SuffixFileFilter.
     */
    public SuffixFileFilter(String suffix, String description) {
        this();
        this.suffix=suffix;
        this.description=description;
    }


    // ------------------------------------------------------------------------
    // --- methods                                                          ---
    // ------------------------------------------------------------------------

    /**
     * Returns the suffix.
     */
    public String getSuffix() {
        return suffix;
    }

    /**
     * Sets the suffix.
     */
    public void setSuffix(String _suffix) {
        suffix = _suffix;
    }

    /**
     * Returns the description.
     */
    public String getDescription() {
        return "*."+getSuffix()+" - "+description;
    }

    /**
     * Sets the description.
     */
    public void setDescription(String _description) {
        description = _description;
    }

    public boolean accept(File file) {
        if (file.isDirectory()) { // must accept to allow user choosing and navigating in directories
            return true;
        }
        String suffix=getSuffix();
        if ((suffix==null)||suffix.equals("")||suffix.equals("*")) {
            return true;
        } else {
            String f=file.getName();
            return f.endsWith("."+suffix);
        }
    }

} // end SuffixFileFilter

   
    
    
    
  








Related examples in the same category

1.JFileChooser is a standard dialog for selecting a file from the file system.
2.A demo which makes extensive use of the file chooserA demo which makes extensive use of the file chooser
3.Demonstration of File dialog boxesDemonstration of File dialog boxes
4.JFileChooser class in action with an accessoryJFileChooser class in action with an accessory
5.A simple file chooser to see what it takes to make one of these workA simple file chooser to see what it takes to make one of these work
6.see what it takes to make one of these filters worksee what it takes to make one of these filters work
7.show thumbnails of graphic filesshow thumbnails of graphic files
8.FileChooser file filter customized filechooserFileChooser file filter customized filechooser
9.Choose a FileChoose a File
10.Customizing a JFileChooserCustomizing a JFileChooser
11.A simple FileFilter class that works by filename extension
12.Swing File Chooser DemoSwing File Chooser Demo
13.FileChooser DemoFileChooser Demo
14.File Chooser Demo 2File Chooser Demo 2
15.File Chooser Demo 4File Chooser Demo 4
16.Getting the File-Type Icon of a File
17.Getting the Large File-Type Icon of a File
18.Listening for Approve and Cancel Events in a JFileChooser Dialog
19.String javax.swing.JFileChooser.APPROVE_SELECTION
20.void javax.swing.JFileChooser.addActionListener(ActionListener l)
21.JDialog javax.swing.JFileChooser.createDialog(Component parent)
22.void javax.swing.JFileChooser.setDialogType(int dialogType)
23.Changing the Text of the Approve Button in a JFileChooser Dialog
24.Determining If a File Is Hidden
25.Showing Hidden Files in a JFileChooser Dialog
26.Enabling Multiple Selections in a JFileChooser Dialog
27.Listening for Changes to the Selected File in a JFileChooser Dialog
28.Getting the File-Type Name of a File
29.Getting and Setting the Selected File of a JFileChooser Dialog
30.Getting and Setting the Current Directory of a JFileChooser Dialog
31.Determining If the Approve or Cancel Button Was Clicked in a JFileChooser Dialog
32.Adding a Filter to a File Chooser Dialog
33.Displaying Only Directories in a File Chooser Dialog
34.Creating a JFileChooser Dialog
35.Localize a JFileChooser
36.Select a directory with a JFileChooser
37.Disable the JFileChooser's "New folder" button
38.Validate a filename from a JFileChooser
39.extends FileView to create custom File chooser
40.Extension File Filter
41.Files filter that filters files by their suffix (or extension)
42.Generic File Filter
43.Get Directory Choice
44.Get File Choice
45.A file view that displays an icon for all files that match a file filterA file view that displays an icon for all files that match a file filter
46.Dir File Filter extends javax.swing.filechooser.FileFilter