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.
// ww w . j a va 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());
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »