Constructor JFileChooser(File currentDirectory)
Member of:
javax.swing.JFileChooser
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
JFileChooser chooser = new JFileChooser(model.InputFile());
2
JFileChooser chooser = new JFileChooser(model.InputFile());
3
fc_ = new JFileChooser (new File (startDir));
4
JFileChooser chooser = new JFileChooser(currentDirectory);
5
JFileChooser chooser = new JFileChooser(currentDirectory);
6
JFileChooser chooser = ((dir != null) ? new JFileChooser (dir) : new JFileChooser ());
7
final JFileChooser fc=new JFileChooser((lastGSSFile!=null) ? lastGSSFile.getParentFile() : new File("."));
8
JFileChooser chooser = new JFileChooser(lastPath);
9
openDialog = new JFileChooser(this.lastCernatoFile);
10
JFileChooser chooser = new JFileChooser(archiver.getWorkDir());
11
chooser = new JFileChooser(_fileLocation);
12
JFileChooser chooser = new JFileChooser(currentParent);
13
JFileChooser fileChooser = new JFileChooser(lastDirectory);
14
inputFileChooser = new JFileChooser( rootDirectory );
15
JFileChooser jfc=new JFileChooser(this.getSelected());
16
JFileChooser fileChooser = new JFileChooser(resultsDir);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.