web-dev-qa-db-ja.com

JOptionPane.showInputDialogのボタンのデフォルトテキストを変更する方法

JOptionPane.showInputDialogの[OK]ボタンと[キャンセル]ボタンのテキストを自分の文字列に設定したいと思います。

JOptionPane.showOptionDialogでボタンのテキストを変更する方法はありますが、showInputDialogで変更する方法が見つかりませんでした。

11
Daniel Briskman

カスタムボタンテキストを含む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"});
9
Freek de Bruijn

単一のinputDialogだけに使用したくない場合は、ダイアログを作成する前にこれらの行を追加してください

UIManager.put("OptionPane.cancelButtonText", "nope");
UIManager.put("OptionPane.okButtonText", "yup");

ここで、「yup」と「nope」は表示するテキストです。

18
Michael Dunn

以下のコードでダイアログが表示され、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/チュートリアル/uiswing/components/dialog.html#create

11
Gregory Peck
3
mre

グーグルで「カスタムテキストJOptionPane」を検索すると、この答えが明らかになりました https://stackoverflow.com/a/8763349/975959

1
La bla bla