JOptionPane.showMessageDialog(newFrame.getContentPane(),
"彈出的是消息提示框!", "系統信息", JOptionPane.INFORMATION_MESSAGE);
JOptionPane.showMessageDialog(newFrame.getContentPane(),
"彈出的是警告提示框!", "系統信息", JOptionPane.WARNING_MESSAGE);
JOptionPane.showMessageDialog(newFrame.getContentPane(),
"彈出的是錯誤提示框!", "系統信息", JOptionPane.ERROR_MESSAGE);
JOptionPane.showMessageDialog(newFrame.getContentPane(),
"彈出的是詢問提示框!", "系統信息", JOptionPane.QUESTION_MESSAGE);html
int option = JOptionPane.showConfirmDialog(null,
"文件已修改,是否保存?", "保存文件?", JOptionPane.YES_NO_OPTION,
JOptionPane.WARNING_MESSAGE, null);
switch (option) {
case JOptionPane.YES_NO_OPTION: {
saveAsFile();
break;
}
case JOptionPane.NO_OPTION:
System.exit(0);url
}spa
摘自般若離弦的博客htm