Changing the Text of the Approve Button in a JFileChooser Dialog
import javax.swing.JFileChooser;
publicclass Main {
publicstaticvoid main(String[] argv) {
JFileChooser chooser = new JFileChooser();
// Set the text
chooser.setApproveButtonText("New Approve Text");
// Set the mnemonic
chooser.setApproveButtonMnemonic('a');
// Set the tool tip
chooser.setApproveButtonToolTipText("New Approve Tool Tip");
chooser.showOpenDialog(null);
}
}