java swing相关常用api
作者:互联网
消息弹窗
错误消息弹窗
JOptionPane.showMessageDialog(null, "提示消息.", "标题",JOptionPane.PLAIN_MESSAGE);
警告消息弹窗
JOptionPane.showMessageDialog(null, "提示消息.", "标题",JOptionPane.ERROR_MESSAGE);
确认消息弹窗
JOptionPane.showMessageDialog(null, "友情提示");
官方swing demo参考链接:
https://docs.oracle.com/javase/tutorial/uiswing/components/index.html
oracle搜索帮助中心:
标签:java,JOptionPane,showMessageDialog,api,消息,swing,null,弹窗 来源: https://blog.csdn.net/bhwqq/article/details/122092817