Java Swing Tutorial - Java JFileChooser .getApproveButtonMnemonic ()








Syntax

JFileChooser.getApproveButtonMnemonic() has the following syntax.

public int getApproveButtonMnemonic()

Example

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

import java.awt.BorderLayout;
//from w  w w  .  j a  v  a  2s . com
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(".");
    
    int mu = fileChooser.getApproveButtonMnemonic();
    
    frame.add(fileChooser, BorderLayout.CENTER);

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