Get Directory Choice : 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 
Get Directory Choice
  

/*
 * Enhydra Java Application Server Project
 *
 * The contents of this file are subject to the Enhydra Public License
 * Version 1.1 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License on
 * the gEnhydra web site ( http://www.enhydra.org/ ).
 *
 * Software distributed under the License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 * the License for the specific terms governing rights and limitations
 * under the License.
 *
 * The Initial Developer of the Enhydra Application Server is Lutris
 * Technologies, Inc. The Enhydra Application Server and portions created
 * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
 * All Rights Reserved.
 *
 * Contributor(s):
 * Paul Mahar
 * Thomas Wessell
 *
 */

//
import javax.swing.JFileChooser;
import javax.swing.UIManager;
import java.awt.Dialog;
import java.awt.Frame;
import java.awt.Window;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.Toolkit;
import java.io.File;
import javax.swing.filechooser.FileFilter;
import java.util.ResourceBundle;

/**
 * SwingUtil contains static utility methods for working with Swing
 * classes.
 *
 */
public class SwingUtil {

    /**
     * Hidden default constructor
     */
    private SwingUtil() {}

    /**
     * Open a JFileChooser dialog for selecting a directory and return the
     * selected directory.
     *
     @param owner
     * The frame or dialog that controls the invokation of this dialog.
     @param defaultDir
     * A string representation of the directory to show when the
     * dialog opens.
     @param title
     * Tile for the dialog.
     *
     @return
     * The selected directory as a File. Null if user cancels dialog without
     * a selection.
     *
     */
    public static File getDirectoryChoice(Component owner, String defaultDir,
                                          String title) {
        return getDirectoryChoice(owner, new File(defaultDir), title);
    }

    /**
     * Open a JFileChooser dialog for selecting a directory and return the
     * selected directory.
     *
     *
     @param owner
     * The frame or dialog that controls the invokation of this dialog.
     @param defaultDir
     * The directory to show when the dialog opens.
     @param title
     * Tile for the dialog.
     *
     @return
     * The selected directory as a File. Null if user cancels dialog without
     * a selection.
     *
     */
    public static File getDirectoryChoice(Component owner, File defaultDir,
                                          String title) {
        //
        // There is apparently a bug in the native Windows FileSystem class that
        // occurs when you use a file chooser and there is a security manager
        // active. An error dialog is displayed indicating there is no disk in
        // Drive A:. To avoid this, the security manager is temporarily set to
        // null and then reset after the file chooser is closed.
        //
        SecurityManager sm = null;
        JFileChooser chooser = null;
        File         choice = null;

        sm = System.getSecurityManager();
        System.setSecurityManager(null);
        chooser = new JFileChooser();
        chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
        if ((defaultDir != null&& defaultDir.exists()
                && defaultDir.isDirectory()) {
            chooser.setCurrentDirectory(defaultDir);
            chooser.setSelectedFile(defaultDir);
        }
        chooser.setDialogTitle(title);
        chooser.setApproveButtonText("OK");
        int v = chooser.showOpenDialog(owner);

        owner.requestFocus();
        switch (v) {
        case JFileChooser.APPROVE_OPTION:
            if (chooser.getSelectedFile() != null) {
                if (chooser.getSelectedFile().exists()) {
                    choice = chooser.getSelectedFile();
                else {
                    File parentFile =
                        new File(chooser.getSelectedFile().getParent());

                    choice = parentFile;
                }
            }
            break;
        case JFileChooser.CANCEL_OPTION:
        case JFileChooser.ERROR_OPTION:
        }
        chooser.removeAll();
        chooser = null;
        System.setSecurityManager(sm);
        return choice;
    }

    /**
     * Get a file selection using the FileChooser dialog.
     *
     @param owner
     * The parent of this modal dialog.
     @param defaultSelection
     * The default file selection as a string.
     @param filter
     * An extension filter
     @param title
     * The caption for the dialog.
     *
     @return
     * A selected file or null if no selection is made.
     */
    public static File getFileChoice(Component owner,
                                     String defaultSelection,
                                     FileFilter filter, String title) {
        return SwingUtil.getFileChoice(owner, new File(defaultSelection),
                                       filter, title);
    }

    /**
     * Get a file selection using the FileChooser dialog.
     *
     @param owner
     * The parent of this modal dialog.
     @param defaultSelection
     * The default file selection as a file.
     @param filter
     * An extension filter
     @param title
     * The caption for the dialog.
     *
     @return
     * A selected file or null if no selection is made.
     */
    public static File getFileChoice(Component owner, File defaultSelection,
                                     FileFilter filter, String title) {
        //
        // There is apparently a bug in the native Windows FileSystem class that
        // occurs when you use a file chooser and there is a security manager
        // active. An error dialog is displayed indicating there is no disk in
        // Drive A:. To avoid this, the security manager is temporarily set to
        // null and then reset after the file chooser is closed.
        //
        SecurityManager sm = null;
        File         choice = null;
        JFileChooser chooser = null;

        sm = System.getSecurityManager();
        System.setSecurityManager(null);

        chooser = new JFileChooser();
        if (defaultSelection.isDirectory()) {
            chooser.setCurrentDirectory(defaultSelection);
        else {
            chooser.setSelectedFile(defaultSelection);
        }
        chooser.setFileFilter(filter);
        chooser.setDialogTitle(title);
        chooser.setApproveButtonText("OK");
        int v = chooser.showOpenDialog(owner);

        owner.requestFocus();
        switch (v) {
        case JFileChooser.APPROVE_OPTION:
            if (chooser.getSelectedFile() != null) {
                choice = chooser.getSelectedFile();
            }
            break;
        case JFileChooser.CANCEL_OPTION:
        case JFileChooser.ERROR_OPTION:
        }
        chooser.removeAll();
        chooser = null;
        System.setSecurityManager(sm);
        return choice;
    }

    /**
     * Get the point on point on the screen at which to open a dialog
     * or window for it to appear centered. This point is the top right hand
     * corner of the container you want to position.
     *
     *
     @param size
     * The demensions of the dialog or window to position.
     *
     @return
     * The top left hand point at which to position the container
     * for it to appear centered.
     *
     */
    public static Point getCenteringPoint(Dimension size) {
        Point     centeringPoint = new Point();
        Dimension screenSize;

        screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        if (size.height > screenSize.height) {
            size.height = screenSize.height;
        }
        if (size.width > screenSize.width) {
            size.width = screenSize.width;
        }
        centeringPoint.x = (screenSize.width - size.width2;
        centeringPoint.y = (screenSize.height - size.height2;
        return centeringPoint;
    }


}

   
    
  
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. Extension File Filter
42. Files filter that filters files by their suffix (or extension)
43. Generic File Filter
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.