首先需要导入JOptionPane类,JOptionPane类属于Swing组件中的一种,其导入方式如下:
import javax.swing.JOptionPane;
可以使用JOptionPane的showMessageDialog方法显示消息文本。
参数格式:
JOptionPane.showMessageDialog(parentComponent,message,title,messageType);
其中,“message”对应对话框中主体信息内容,“title”对应对话框中标题内容。
示例:
import javax.swing.JOptionPane;
public class Pane {
public static void main(String []args){
System.out.println("弹窗:");
JOptionPane.showMessageDialog(null,
"plain.",
"title",
JOptionPane.PLAIN_MESSAGE);
}
}
运行结果: