2

JavaScript 弹出窗口的 Java Swing 对应项是什么alert()(如果有的话)?

4

3 回答 3

7

完成此类弹出窗口的基本方法是使用JOptionPane.showMessageDialog请参见此处

JOptionPane.showMessageDialog(frame, "here comes the text.");   
// assumes frame to be a reference to the desired parent frame
于 2012-06-16T17:18:20.157 回答
2

认为您正在寻找 JOptionPanes 但这里是不同对话框的一个很好的描述:http: //docs.oracle.com/javase/tutorial/uiswing/components/dialog.html

于 2012-06-16T17:17:28.680 回答
2

如何在 Java 中创建对话框:

于 2012-06-16T17:19:50.090 回答