我想显示一个消息框以在Java中显示一些消息,并且该框应该有三个按钮,用户可以按下这样的按钮,以便程序在用户按下按钮时可以获得值。
答案 0 :(得分:3)
如果您使用Java Swing,请查看
答案 1 :(得分: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文档here