消息弹窗
错误消息弹窗
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 Swing中不同类型的对话框使用方法,包括错误消息、警告消息和确认消息的弹窗展示。示例代码展示了如何创建这些基本的用户交互窗口。

2102

被折叠的 条评论
为什么被折叠?



