我正在学习java swing。下面的代码是一个处理 IOException 并显示错误消息的 catch 块。
catch(IOException e)
{
System.out.println("IOException");
JOptionPane.showMessageDialog(null,"File not found",null,
JOptionPane.ERROR_MESSAGE);
}
我正在考虑在 catch 块中声明和自定义我自己的 JOptionPane,如下面的代码:
JOptionPane jop=new JOptionPane();
jop.setLayout(new BorderLayout());
JLabel im=new JLabel("Java Technology Dive Log",
new ImageIcon("images/gwhite.gif"),JLabel.CENTER);
jop.add(im,BorderLayout.NORTH);
jop.setVisible(true);
但问题是我不知道如何让它像 showMessageDialogue 方法那样出现在屏幕上。请帮忙。提前致谢。