~cpp import java.awt.*; import java.awt.event.*; import javax.swing.*; public class AppletTest extends JApplet implements ActionListener { JButton 1, 2 ; Icon ; Font font; public void init() { 1 = new JButton("1번"); 1.addActionListener(this); 2 = new JButton("2번"); 2.addActionListener(this); = new ImageIcon("aaa.jpg"); JPanel panel = new JPanel(); panel.add(1); panel.add(2); getContentPane().add(panel); } public void actionPerformed(ActionEvent ae) { if (ae.getSource() == 1) { JOptionPane.showMessageDialog( this, "1번", "1번", JOptionPane.YES_NO_OPTION, ); } else if (ae.getSource() == 2) { Object res = JOptionPane.showInputDialog( this, "2번", "2번", JOptionPane.QUESTION_MESSAGE, , new Object[] { "2-1", "2-2", "2-3" }, "2-1"); JOptionPane.showMessageDialog( this, " : " + res, "", JOptionPane.INFORMATION_MESSAGE, ); } } }