Extension File Filter : File Chooser « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » File ChooserScreenshots 
Extension File Filter
  
/*
 * jMemorize - Learning made easy (and fun) - A Leitner flashcards tool
 * Copyright(C) 2004-2006 Riad Djemili
 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 1, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

import java.io.File;

import javax.swing.filechooser.FileFilter;

/**
 * A sime file filter for file choosers.
 
 @author djemili
 */
public class ExtensionFileFilter extends FileFilter
{
    private String m_extension;
    private String m_description;

    public ExtensionFileFilter(String extension, String description)
    {
        m_extension = extension;
        m_description = description;
    }

    /*
     * @see javax.swing.filechooser.FileFilter
     */
    public boolean accept(File f)
    {
        return f.isDirectory() || f.getName().endsWith(m_extension);
    }

    /*
     * @see javax.swing.filechooser.FileFilter
     */
    public String getDescription()
    {
        return m_description;
    }

    public String getExtension()
    {
        return m_extension;
    }
}

   
    
  
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. Suffix FileFilter
41. Files filter that filters files by their suffix (or extension)
42. Generic File Filter
43. Get Directory Choice
44. Get File Choice
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.