我想显示一个消息框以在 Java 中显示一些消息,并且该框应该有三个用户可以按下的按钮,以便程序可以在用户按下按钮时获得价值。
问问题
4372 次
2 回答
3
如果您使用 Java Swing,请查看
于 2013-01-08T07:13:26.077 回答
2
我想这就是你要找的
//Custom button text
Object[] options = {"Yes, please",
"No, thanks",
"No eggs, no ham!"};
int n = JOptionPane.showOptionDialog(frame,
"Would you like some green eggs to go "
+ "with that ham?",
"A Silly Question",
JOptionPane.YES_NO_CANCEL_OPTION,
JOptionPane.QUESTION_MESSAGE,
null,
options,
options[2]);
请在此处参考 oracle 文档
于 2013-01-08T08:27:57.573 回答