我正在寻找一个产生窗口的单线程,允许我选择(图形化,例如使用组合框)几个选项之一。
我可以使用以下代码创建MessageBox,但这不允许交互:
JOptionPane.showMessageDialog(null, "read this", "title", JOptionPane.WARNING_MESSAGE);
对话框应该(有点)看起来像这个tk小部件:http://i.stack.imgur.com/jLk9j.png
并提供像
这样的签名// return null or the index in the array
Integer letUserChooseIndex(String[] options)
但也可能会接受Collection<Object>
或类似内容。
这里最简单的选择是什么?
答案 0 :(得分:0)
JOptionPane具有内置组合框的功能。这来自here:
select product_id from table where multiple_option_id= 10 or multiple_option_id = 1024;
以上代码使用以下方法:
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);
}
}