我试图将我的图标放在JOptionPane中。我已经在这里阅读了这篇文章,但我尝试使用我需要的选项,但它没有发生。我希望将图像放在顶部,然后选择对话框和按钮。这是我到目前为止所做的。
ImageIcon icon = new ImageIcon(img.class.getResource("zoo.png"));
String[] options = {"Animals", "Habitat", "Exit"};
int x = JOptionPane.showOptionDialog(null, "Zookeepers would you like to view animal activities or monitor habitats?",
"Welcome to the Brooklyn Zoo!", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, icon, options, options[0]);