我想调用JOptionPane
的方法
来自我的主要课程。
有没有具体的方法来做到这一点?
Dictionary word1 = new Dictionary(null);
CardCatalog catalog = new CardCatalog();
final ImageIcon welcome = new ImageIcon("welcome.jpg");
JOptionPane.showMessageDialog (null,"","WELCOME TO FLASH CARD",JOptionPane.INFORMATION_MESSAGE,welcome);
答案 0 :(得分:0)
使用像这样的showmessage方法
JOptionPane.showMessageDialog(frame, Myclass.dosomethign());
但请确保方法的返回类型是字符串,因为showmessage方法将字符串作为第二个参数