Example usage for javax.swing JFileChooser getDescription

List of usage examples for javax.swing JFileChooser getDescription

Introduction

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

Prototype

public String getDescription(File f) 

Source Link

Document

Returns the file description.

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(".");
    String f = fileChooser.getDescription(new File("."));

    frame.add(fileChooser, BorderLayout.CENTER);

    frame.pack();//from  w ww  . j  av a  2s . c  o  m
    frame.setVisible(true);
}