如何向JOptionPane添加方法

时间:2016-04-25 17:39:50

标签: java object arraylist joptionpane

我想调用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);

1 个答案:

答案 0 :(得分:0)

使用像这样的showmessage方法

  JOptionPane.showMessageDialog(frame, Myclass.dosomethign());

但请确保方法的返回类型是字符串,因为showmessage方法将字符串作为第二个参数