我想在出现异常时发出提醒,例如代码:
try
{
//the code here
}
catch(Exception e)
{
//show an alert dialog here
}
我需要一个示例或代码片段。
答案 0 :(得分:20)
您可以将JOptionPane.showMessageDialog
与WARNING_MESSAGE
:
JOptionPane.showMessageDialog(yourFrame,
"WARNING.",
"Warning",
JOptionPane.WARNING_MESSAGE);
有关如何制作对话框的更多信息here。
答案 1 :(得分:6)
试试这个:
JOptionPane.showMessageDialog(null, "My Goodness, this is so concise");
如果您静态导入JOptionPane.showMessageDialog,则会进一步缩小为
showMessageDialog(null, "This language just gets better and better!");