Java Swing Tutorial - 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.

 /*from  ww w  . ja  v  a 2  s.  c om*/
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();
  }
}