Java Swing Tutorial - Java JFileChooser .getApproveButtonText ()








Syntax

JFileChooser.getApproveButtonText() has the following syntax.

public String getApproveButtonText()

Example

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

import java.awt.BorderLayout;
//from  w w w  .ja  va  2 s.  co m
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 text = fileChooser.getApproveButtonText();
    
    frame.add(fileChooser, BorderLayout.CENTER);

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