OptionPane.okButtonText
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.UIManager;
public class MainClass {
public static void main(final String args[]) {
UIManager.put("OptionPane.cancelButtonText", "Annuler");
UIManager.put("OptionPane.noButtonText", "Non");
UIManager.put("OptionPane.okButtonText", "D'accord");
UIManager.put("OptionPane.yesButtonText", "Oui");
int result = JOptionPane.showConfirmDialog(new JFrame(),
"Est-ce que vous avez 18 ans ou plus?", "Choisisez une option",
JOptionPane.YES_NO_CANCEL_OPTION);
if (result == JOptionPane.YES_OPTION) {
System.out.println("Yes");
} else if (result == JOptionPane.NO_OPTION) {
System.out.println("No");
} else if (result == JOptionPane.CANCEL_OPTION) {
System.out.println("Cancel");
} else if (result == JOptionPane.CLOSED_OPTION) {
System.out.println("Closed");
}
}
}
Related examples in the same category
1. | OptionPane.cancelButtonText | | |
2. | JOptionPane.CANCEL_OPTION | | |
3. | JOptionPane.CLOSED_OPTION | | |
4. | JOptionPane.DEFAULT_OPTION | | |
5. | JOptionPane.INFORMATION_MESSAGE | | |
6. | JOptionPane.NO_OPTION | | |
7. | OptionPane.noButtonText | | |
8. | JOptionPane.OK_CANCEL_OPTION | | |
9. | JOptionPane.QUESTION_MESSAGE | | |
10. | JOptionPane.YES_NO_OPTION | | |
11. | JOptionPane.YES_OPTION | | |
12. | OptionPane.yesButtonText | | |
13. | JOptionPane.UNINITIALIZED_VALUE | | |
14. | JOptionPane.WARNING_MESSAGE | | |
15. | JOptionPane: createDialog(Component parentComponent, String title) | | |
16. | JOptionPane: getMaxCharactersPerLineCount() | | |
17. | JOptionPane: setMessage(Object newMessage) | | |
18. | JOptionPane: setMessage(Object newMessage) (HTML message) | | |
19. | JOptionPane: setMessage(Object newMessage) (Component Array) | | |
20. | JOptionPane: setMessageType(int newType) | | |
21. | JOptionPane: setOptions(Object[] newOptions) | | |
22. | JOptionPane.setOptionType(int newType) | | |
23. | JOptionPane: showConfirmDialog(Component parentComponent, Object message) | | |
24. | JOptionPane: showConfirmDialog(Component parentComponent, Object message, String title, int optionType) | | |
25. | JOptionPane: showInputDialog(Object message) | | |
26. | JOptionPane: showInputDialog(Component p, Object m, String t, int m, Icon i, Object[] o, Object i) | | |
27. | JOptionPane: showInternalInputDialog(Component parentComponent, Object message) | | |
28. | JOptionPane: showInternalConfirmDialog(Component parentComponent, Object message) | | |
29. | JOptionPane.showInternalMessageDialog(Component parentComponent, Object message) | | |
30. | JOptionPane: showMessageDialog(Component parentComponent, Object message) | | |
31. | JOptionPane: showOptionDialog(Component p, Object m, String t, int o, int me, Icon i, Object[] o, Object in) | | |