Java Swing Tutorial - Java JFileChooser .getDescription (File f)








Syntax

JFileChooser.getDescription(File f) has the following syntax.

public String getDescription(File f)

Example

In the following code shows how to use JFileChooser.getDescription(File f) method.

/*w  ww .j a  v a 2  s .  c  o  m*/
import java.awt.BorderLayout;
import java.io.File;

import javax.swing.JFileChooser;
import javax.swing.JFrame;

public class Main{

  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();
    frame.setVisible(true);
  }
}