我正在寻找一个生成窗口并允许我选择(图形化,例如使用组合框)几个选项之一的一行程序。
我可以用下面的代码创建一个MessageBox,但是它不允许交互:
JOptionPane.showMessageDialog(null, "read this", "title", JOptionPane.WARNING_MESSAGE);
对话框应该看起来(有点)像这个tk小部件:https://i.stack.imgur.com/jLk9j.png
并提供类似
的签名// return null or the index in the array
Integer letUserChooseIndex(String[] options)
,但也可能接受Collection<Object>
或类似的内容。
这里最简单的选项是什么?
JOptionPane具有内置组合框的功能。这是从这里:
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
public class MainClass {
public static void main(String args[]) {
JFrame f = new JFrame("JOptionPane Sample");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton button = new JButton("Ask");
ActionListener actionListener = new ActionListener() {
public void actionPerformed(ActionEvent actionEvent) {
Component source = (Component) actionEvent.getSource();
Object response = JOptionPane.showInputDialog(source,
"Choose One?", "JOptionPane Sample",
JOptionPane.QUESTION_MESSAGE, null, new String[] { "A", "B", "C" },
"B");
System.out.println("Response: " + response);
}
};
button.addActionListener(actionListener);
f.add(button, BorderLayout.CENTER);
f.setSize(300, 200);
f.setVisible(true);
}
}
上面的代码使用了以下方法:
public static Object showInputDialog(Component parentComponent,
Object message,
String title,
int messageType,
Icon icon,
Object[] selectionValues,
Object initialSelectionValue)