Java JFileChooser .getCurrentDirectory ()

Syntax

JFileChooser.getCurrentDirectory() has the following syntax.

public File getCurrentDirectory()

Example

In the following code shows how to use JFileChooser.getCurrentDirectory() method.


 //ww  w  .j a v a2s. c  o m
import java.io.File;

import javax.swing.JFileChooser;

public class Main {
  public static void main(String[] argv) throws Exception {
    JFileChooser chooser = new JFileChooser();
    File f = new File(new File(".").getCanonicalPath());
    chooser.setCurrentDirectory(f);
    chooser.setCurrentDirectory(null);
    chooser.showOpenDialog(null);
    File curDir = chooser.getCurrentDirectory();
  }
}