Example usage for javax.swing JFileChooser ensureFileIsVisible

List of usage examples for javax.swing JFileChooser ensureFileIsVisible

Introduction

In this page you can find the example usage for javax.swing JFileChooser ensureFileIsVisible.

Prototype

public void ensureFileIsVisible(File f) 

Source Link

Document

Makes sure that the specified file is viewable, and not hidden.

Usage

From source file:Main.java

public static void main(String[] a) {
    JFrame frame = new JFrame("JFileChooser Popup");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JFileChooser fileChooser = new JFileChooser(".");
    fileChooser.ensureFileIsVisible(new File("."));

    frame.add(fileChooser, BorderLayout.CENTER);

    frame.pack();//from  www. j  a v a 2s.com
    frame.setVisible(true);
}