org.apache.jmeter.gui.util
Class FileDialoger
public final class FileDialoger
Class implementing a file open dialogue
static JFileChooser | promptToOpenFile()
|
static JFileChooser | promptToOpenFile(String[] exts) - Prompts the user to choose a file from their filesystems for our own
devious uses.
|
static JFileChooser | promptToSaveFile(String filename) - Prompts the user to choose a file from their filesystems for our own
devious uses.
|
static JFileChooser | promptToSaveFile(String filename, String[] extensions) - Get a JFileChooser with a new FileFilter.
|
promptToOpenFile
public static JFileChooser promptToOpenFile()
promptToOpenFile
public static JFileChooser promptToOpenFile(String[] exts)
Prompts the user to choose a file from their filesystems for our own
devious uses. This method maintains the last directory the user visited
before dismissing the dialog. This does NOT imply they actually chose a
file from that directory, only that they closed the dialog there. It is
the caller's responsibility to check to see if the selected file is
non-null.
- the JFileChooser that interacted with the user, after they are
finished using it - null if no file was chosen
promptToSaveFile
public static JFileChooser promptToSaveFile(String filename)
Prompts the user to choose a file from their filesystems for our own
devious uses. This method maintains the last directory the user visited
before dismissing the dialog. This does NOT imply they actually chose a
file from that directory, only that they closed the dialog there. It is
the caller's responsibility to check to see if the selected file is
non-null.
- the JFileChooser that interacted with the user, after they are
finished using it - null if no file was chosen
promptToSaveFile
public static JFileChooser promptToSaveFile(String filename,
String[] extensions)
Get a JFileChooser with a new FileFilter.
filename
- file nameextensions
- list of extensions
- the FileChooser - null if no file was chosen
Copyright © 1998-2010 Apache Software Foundation. All Rights Reserved.