public final class FileChooser extends Object
On some platforms where file access may be restricted or not part of the user model (for example, on some mobile or embedded devices), opening a file dialog may always result in a no-op (that is, null file(s) being returned).
A FileChooser
can be used to invoke file open dialogs for selecting
single file (showOpenDialog
), file open dialogs for selecting
multiple files (showOpenMultipleDialog
) and file save dialogs
(showSaveDialog
). The configuration of the displayed dialog is
controlled by the values of the FileChooser
properties set before the
corresponding show*Dialog
method is called. This configuration
includes the dialog's title, the initial directory displayed in the dialog
and the extension filter(s) for the listed files. For configuration
properties which values haven't been set explicitly, the displayed dialog
uses their platform default values. A call to a show dialog method is
blocked until the user makes a choice or cancels the dialog. The return
value specifies the selected file(s) or equals to null
if the dialog
has been canceled.
Example:
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Open Resource File");
fileChooser.getExtensionFilters().addAll(
new ExtensionFilter("Text Files", "*.txt"),
new ExtensionFilter("Image Files", "*.png", "*.jpg", "*.gif"),
new ExtensionFilter("Audio Files", "*.wav", "*.mp3", "*.aac"),
new ExtensionFilter("All Files", "*.*"));
File selectedFile = fileChooser.showOpenDialog(mainStage);
if (selectedFile != null) {
mainStage.display(selectedFile);
}
Type | Property and Description |
---|---|
ObjectProperty<File> |
initialDirectory
The initial directory for the displayed file dialog.
|
ObjectProperty<String> |
initialFileName
The initial file name for the displayed dialog.
|
ObjectProperty<FileChooser.ExtensionFilter> |
selectedExtensionFilter
This property is used to pre-select the extension filter for the next
displayed dialog and to read the user-selected extension filter from the
dismissed dialog.
|
StringProperty |
title
The title of the displayed file dialog.
|
Modifier and Type | Class and Description |
---|---|
static class |
FileChooser.ExtensionFilter
Defines an extension filter, used for filtering which files can be chosen
in a FileDialog based on the file name extensions.
|
Constructor and Description |
---|
FileChooser() |
Modifier and Type | Method and Description |
---|---|
ObservableList<FileChooser.ExtensionFilter> |
getExtensionFilters()
Gets the extension filters used in the displayed file dialog.
|
File |
getInitialDirectory()
Gets the value of the property initialDirectory.
|
String |
getInitialFileName()
Gets the value of the property initialFileName.
|
FileChooser.ExtensionFilter |
getSelectedExtensionFilter()
Gets the value of the property selectedExtensionFilter.
|
String |
getTitle()
Gets the value of the property title.
|
ObjectProperty<File> |
initialDirectoryProperty()
The initial directory for the displayed file dialog.
|
ObjectProperty<String> |
initialFileNameProperty()
The initial file name for the displayed dialog.
|
ObjectProperty<FileChooser.ExtensionFilter> |
selectedExtensionFilterProperty()
This property is used to pre-select the extension filter for the next
displayed dialog and to read the user-selected extension filter from the
dismissed dialog.
|
void |
setInitialDirectory(File value)
Sets the value of the property initialDirectory.
|
void |
setInitialFileName(String value)
Sets the value of the property initialFileName.
|
void |
setSelectedExtensionFilter(FileChooser.ExtensionFilter filter)
Sets the value of the property selectedExtensionFilter.
|
void |
setTitle(String value)
Sets the value of the property title.
|
File |
showOpenDialog(Window ownerWindow)
Shows a new file open dialog.
|
List<File> |
showOpenMultipleDialog(Window ownerWindow)
Shows a new file open dialog in which multiple files can be selected.
|
File |
showSaveDialog(Window ownerWindow)
Shows a new file save dialog.
|
StringProperty |
titleProperty()
The title of the displayed file dialog.
|
public final StringProperty titleProperty
getTitle()
,
setTitle(String)
public final ObjectProperty<File> initialDirectoryProperty
getInitialDirectory()
,
setInitialDirectory(File)
public final ObjectProperty<String> initialFileNameProperty
This property is used mostly in the displayed file save dialogs as the initial file name for the file being saved. If set for a file open dialog it will have any impact on the displayed dialog only if the corresponding platform provides support for such property in its file open dialogs.
getInitialFileName()
,
setInitialFileName(String)
public final ObjectProperty<FileChooser.ExtensionFilter> selectedExtensionFilterProperty
When the file dialog is shown, the selectedExtensionFilter will be checked. If the value of selectedExtensionFilter is null or is not contained in the list of extension filters, then the first extension filter in the list of extension filters will be selected instead. Otherwise, the specified selectedExtensionFilter will be activated.
After the dialog is dismissed the value of this property is updated to match the user-selected extension filter from the dialog.
getSelectedExtensionFilter()
,
setSelectedExtensionFilter(ExtensionFilter)
public final void setTitle(String value)
public final String getTitle()
public final StringProperty titleProperty()
getTitle()
,
setTitle(String)
public final void setInitialDirectory(File value)
public final File getInitialDirectory()
public final ObjectProperty<File> initialDirectoryProperty()
getInitialDirectory()
,
setInitialDirectory(File)
public final void setInitialFileName(String value)
This property is used mostly in the displayed file save dialogs as the initial file name for the file being saved. If set for a file open dialog it will have any impact on the displayed dialog only if the corresponding platform provides support for such property in its file open dialogs.
public final String getInitialFileName()
This property is used mostly in the displayed file save dialogs as the initial file name for the file being saved. If set for a file open dialog it will have any impact on the displayed dialog only if the corresponding platform provides support for such property in its file open dialogs.
public final ObjectProperty<String> initialFileNameProperty()
This property is used mostly in the displayed file save dialogs as the initial file name for the file being saved. If set for a file open dialog it will have any impact on the displayed dialog only if the corresponding platform provides support for such property in its file open dialogs.
getInitialFileName()
,
setInitialFileName(String)
public ObservableList<FileChooser.ExtensionFilter> getExtensionFilters()
public final ObjectProperty<FileChooser.ExtensionFilter> selectedExtensionFilterProperty()
When the file dialog is shown, the selectedExtensionFilter will be checked. If the value of selectedExtensionFilter is null or is not contained in the list of extension filters, then the first extension filter in the list of extension filters will be selected instead. Otherwise, the specified selectedExtensionFilter will be activated.
After the dialog is dismissed the value of this property is updated to match the user-selected extension filter from the dialog.
getSelectedExtensionFilter()
,
setSelectedExtensionFilter(ExtensionFilter)
public final void setSelectedExtensionFilter(FileChooser.ExtensionFilter filter)
When the file dialog is shown, the selectedExtensionFilter will be checked. If the value of selectedExtensionFilter is null or is not contained in the list of extension filters, then the first extension filter in the list of extension filters will be selected instead. Otherwise, the specified selectedExtensionFilter will be activated.
After the dialog is dismissed the value of this property is updated to match the user-selected extension filter from the dialog.
public final FileChooser.ExtensionFilter getSelectedExtensionFilter()
When the file dialog is shown, the selectedExtensionFilter will be checked. If the value of selectedExtensionFilter is null or is not contained in the list of extension filters, then the first extension filter in the list of extension filters will be selected instead. Otherwise, the specified selectedExtensionFilter will be activated.
After the dialog is dismissed the value of this property is updated to match the user-selected extension filter from the dialog.
public File showOpenDialog(Window ownerWindow)
null
if no selection has been
made. If the owner window for the file dialog is set, input to all
windows in the dialog's owner chain is blocked while the file dialog
is being shown.ownerWindow
- the owner window of the displayed file dialognull
if no file has been selectedpublic List<File> showOpenMultipleDialog(Window ownerWindow)
null
if no selection has been made. If the owner window for the file dialog is
set, input to all windows in the dialog's owner chain is blocked while
the file dialog is being shown.
The returned list is unmodifiable and will throw
UnsupportedOperationException
on each modification attempt.
ownerWindow
- the owner window of the displayed file dialognull
if no file has been selectedpublic File showSaveDialog(Window ownerWindow)
null
if no selection has been made.
If the owner window for the file dialog is set, input to all windows in
the dialog's owner chain is blocked while the file dialog is being shown.ownerWindow
- the owner window of the displayed file dialognull
if no file has been selectedSubmit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.