Java tutorial
import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JOptionPane; public class Main { public static void main(final String args[]) { Icon icon = new ImageIcon("dog.jpg"); JButton button = new JButton("Dog", icon); JOptionPane.showMessageDialog(null, button); } }