Java Swing Tutorial - Java JFileChooser .getFileSystemView ()








Syntax

JFileChooser.getFileSystemView() has the following syntax.

public FileSystemView getFileSystemView()

Example

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

 /*  w ww  . jav  a  2s. c o  m*/
import javax.swing.JFileChooser;
import javax.swing.filechooser.FileSystemView;

public class Main {

  public static void main(String[] args) {

    JFileChooser chooser = new JFileChooser();
    FileSystemView view = chooser.getFileSystemView();

    System.out.println("The home directory is " + view.getHomeDirectory());
  }
}