Java JFileChooser .getControlButtonsAreShown ()

Syntax

JFileChooser.getControlButtonsAreShown() has the following syntax.

public boolean getControlButtonsAreShown()

Example

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


import java.awt.BorderLayout;
//  w w w.j a v a  2s . c  o m
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.filechooser.FileFilter;

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(".");
    
    boolean b = fileChooser.getControlButtonsAreShown();
    
    frame.add(fileChooser, BorderLayout.CENTER);

    frame.pack();
    frame.setVisible(true);
  }
}