我想在JOptionPane.showInputDialog
中设置OK和CANCEL按钮的文字
我自己的字符串。
有一种方法可以更改JOptionPane.showOptionDialog
中按钮的文字,但我找不到在showInputDialog
中更改内容的方法。
答案 0 :(得分:18)
如果您不想只使用一个inputDialog,请在创建对话框之前添加这些行
UIManager.put("OptionPane.cancelButtonText", "nope");
UIManager.put("OptionPane.okButtonText", "yup");
其中'yup'和'nope'是您要显示的文字
答案 1 :(得分:9)
如果您希望JOptionPane.showInputDialog具有自定义按钮文本,您可以扩展JOptionPane:
public class JEnhancedOptionPane extends JOptionPane {
public static String showInputDialog(final Object message, final Object[] options)
throws HeadlessException {
final JOptionPane pane = new JOptionPane(message, QUESTION_MESSAGE,
OK_CANCEL_OPTION, null,
options, null);
pane.setWantsInput(true);
pane.setComponentOrientation((getRootFrame()).getComponentOrientation());
pane.setMessageType(QUESTION_MESSAGE);
pane.selectInitialValue();
final String title = UIManager.getString("OptionPane.inputDialogTitle", null);
final JDialog dialog = pane.createDialog(null, title);
dialog.setVisible(true);
dialog.dispose();
final Object value = pane.getInputValue();
return (value == UNINITIALIZED_VALUE) ? null : (String) value;
}
}
您可以这样称呼它:
JEnhancedOptionPane.showInputDialog("Number:", new Object[]{"Yes", "No"});
答案 2 :(得分:8)
下面的代码会显示一个对话框,您可以在Object[]
中指定按钮文字。
Object[] choices = {"One", "Two"};
Object defaultChoice = choices[0];
JOptionPane.showOptionDialog(this,
"Select one of the values",
"Title message",
JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
choices,
defaultChoice);
另外,请务必查看Oracle站点上的Java教程。我在教程http://docs.oracle.com/javase/tutorial/uiswing/components/dialog.html#create
中找到了此链接的解决方案答案 3 :(得分:2)
在谷歌中搜索“自定义文本JOptionPane”显示了这个答案 https://stackoverflow.com/a/8763349/975959
答案 4 :(得分:2)