Here you can find the source of chooseDirectory(String name, final String desc, File curdir)
Parameter | Description |
---|---|
name | the dialog's title |
desc | the locale for "folders" |
curdir | the initial directory to be set |
public static File chooseDirectory(String name, final String desc, File curdir)
//package com.java2s; /*//from w ww. j a v a2 s . c o m * Zettelkasten - nach Luhmann ** Copyright (C) 2001-2014 by Daniel L?decke (http://www.danielluedecke.de) * * Homepage: http://zettelkasten.danielluedecke.de * * * 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 3 of * the License, 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, see <http://www.gnu.org/licenses/>. * * * Dieses Programm ist freie Software. Sie k?nnen es unter den Bedingungen der GNU * General Public License, wie von der Free Software Foundation ver?ffentlicht, weitergeben * und/oder modifizieren, entweder gem?? Version 3 der Lizenz oder (wenn Sie m?chten) * jeder sp?teren Version. * * Die Ver?ffentlichung dieses Programms erfolgt in der Hoffnung, da? es Ihnen von Nutzen sein * wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite Garantie der MARKTREIFE oder * der VERWENDBARKEIT F?R EINEN BESTIMMTEN ZWECK. Details finden Sie in der * GNU General Public License. * * Sie sollten ein Exemplar der GNU General Public License zusammen mit diesem Programm * erhalten haben. Falls nicht, siehe <http://www.gnu.org/licenses/>. */ import java.io.File; import javax.swing.JFileChooser; import javax.swing.filechooser.FileFilter; public class Main { /** * A directory-chooser for choosing directories (when file-selecting should be restricted). * * @param name the dialog's title * @param desc the locale for "folders" * @param curdir the initial directory to be set * @return the selected directory as File-variable, or {@code null} if user cancels the dialog */ public static File chooseDirectory(String name, final String desc, File curdir) { JFileChooser fc = new JFileChooser(); fc.setDialogTitle(name); fc.setAcceptAllFileFilterUsed(false); fc.setCurrentDirectory(curdir); fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); fc.setFileFilter(new FileFilter() { @Override public boolean accept(File f) { return f.isDirectory(); } @Override public String getDescription() { return desc; } }); int option = fc.showOpenDialog(null); if (JFileChooser.APPROVE_OPTION == option) { return fc.getSelectedFile(); } return null; } }