JOptionPane.ERROR_MESSAGE
时间: 2024-01-11 20:02:10 浏览: 140
error message
JOptionPane.ERROR_MESSAGE 是 JOptionPane 类中的一个常量,它表示在对话框中显示一个错误图标,用于提示用户发生了错误或异常情况。
在使用 showMessageDialog() 或 showConfirmDialog() 方法时,我们可以将 messageType 参数设置为 JOptionPane.ERROR_MESSAGE,以显示一个带有错误图标的消息框或对话框。示例代码如下:
```java
// 显示一个带有标题和图标的消息框
JOptionPane.showMessageDialog(null, "Error occurred!", "Error", JOptionPane.ERROR_MESSAGE);
// 显示一个带有选项的对话框
int response = JOptionPane.showConfirmDialog(null, "Do you want to continue?", "Confirm",
JOptionPane.YES_NO_OPTION, JOptionPane.ERROR_MESSAGE);
```
在上述代码中,我们使用 showMessageDialog() 和 showConfirmDialog() 方法分别显示了一个带有错误图标的消息框和带有错误图标的对话框。
除了 JOptionPane.ERROR_MESSAGE 常量外,JOptionPane 还提供了许多其他常量,如 JOptionPane.INFORMATION_MESSAGE、JOptionPane.WARNING_MESSAGE、JOptionPane.QUESTION_MESSAGE 等,用于指定不同类型的消息框或对话框的图标。
阅读全文