1

以下代码按预期显示了一个对话框,除了没有按钮:

  final JPasswordField passwdField = new JPasswordField();
  passwdField.setColumns(20);
  final JComponent[] inputs = new JComponent[] {  passwdField };
  int res = JOptionPane.showOptionDialog(null, "Enter Password", "Login", 
                  JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, 
                  null, inputs, "");

显示以下对话框(Java 6.2?,Windows 7 64 位):

在此处输入图像描述

为什么没有确定/取消按钮?(顺便说一句,对话框不可调整大小,所以我不知道它们是否在可见框架之外)

(此外,按 Enter 不会关闭对话框,“x”会关闭对话框)

4

1 回答 1

2

您的问题在于输入数组。阅读 API,它会告诉您它应该有所不同。我通常使用一个字符串数组,每个字符串代表一个按钮字符串,或者有时我使用对象的混合,混合组件和字符串。例如,

  JPasswordField passField = new JPasswordField(10);
  Object[] inputs = {passField, "OK", "Cancel"};
  int res = JOptionPane.showOptionDialog(null, "Enter Password", "Login", 
           JOptionPane.OK_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, 
           null, inputs, "");
  if (res == 1) {
     System.out.println("Password is: " + new String(passField.getPassword()));
  }
于 2011-07-25T01:57:09.627 回答