在 Java Swing 中显示图像

2022-09-03 16:47:55
public class MinesweeperMenu extends MinesweeperPanel{

private JPanel picture = new JPanel();
private JButton play = new JButton("Play");
private JButton highScores = new JButton("High Score and \nStatistics");
private JButton changeMap = new JButton("Create Custom \nor Change Map");
private JButton difficulty = new JButton("Custom or\nChange Difficulty");
private JButton user = new JButton("Change User");
Image img;

public MinesweeperMenu()
{
    // Set Layout for the menu
    LayoutManager menuLayout = new BoxLayout(menu, BoxLayout.Y_AXIS);
    menu.setLayout(menuLayout);

    // Set Layout for the window
    LayoutManager windowLayout = new BorderLayout();
    window.setLayout(windowLayout);

    // Add buttons to the panels
    menu.add(play);
    menu.add(highScores);
    menu.add(changeMap);
    menu.add(difficulty);
    menu.add(user);

    // Add picture to the frame
    try{
    File input = new File("./setup/images/MineMenuPicture.jpg");
    img = ImageIO.read(input);
    }
    catch(IOException ie)
    {
        System.out.println(ie.getMessage());
    }

    // Add action listeners
    changeMap.addActionListener(new ChangeMapListener());   

}


public void paintComponent(Graphics g)
{
    // POSITION OF THE PICTURE
    int x = 650;
    int y = 585;
    g.drawImage(img, x, y, null);
}

public void displayFrame()
{
    // Display Frame
    window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    window.setVisible(true);
}

public static void main(String[] args)
{
    MinesweeperMenu menu = new MinesweeperMenu();
    window.pack();
    menu.displayFrame();
    window.repaint();
}
}


public class MinesweeperPanel extends JFrame{

public static final Color COLOR_KEY = new Color(220, 110, 0);

// Initialize all the objects
public static JFrame window = new JFrame("Minesweeper++");
public static JPanel menu = new JPanel();

// Close the current window
public static void close()
{
    window.setVisible(false);
    window.dispose();
}



}

我无法让我的图像显示在帧中。我已经尝试了一切,但我得到的印象是,这是一个我没有意识到的错误,因为我是Java Swing的新手。任何帮助将不胜感激。


答案 1

你有一个非常混乱的程序结构,让自己变得困难,我建议你把事情简化很多

首先,您当前的扫雷类不需要扩展扫雷窗格,而后者则不需要扩展 JFrame。然后你在其他地方有一个静态的JFrame -- 这太多了JFrame,并且要启动,你试图在一个JFrame中显示你的图像,但显示另一个没有图片的JFrame。你的程序只需要一个JFrame,它应该被创建,塞满它的内容,打包并显示在一个地方,而不是像你所做的那样分散在这里和那里。

您尝试在 paintComponent 重写中显示图片,但此方法永远不会被调用,因为您的类扩展了 JFrame(最终),而 JFrame 没有此方法。你使用的是正确的方法,但类应该扩展 JPanel,并且你应该在 paintComponent 方法块上方有一个注释,以确保你实际上重写了父方法。@Override

您应该摆脱此程序中的所有静态内容。这里唯一静态的应该是主方法,也许还有一些常量,但仅此而已。

这里有更多的错误,我很少有时间去讨论所有这些错误。考虑从头开始,从小处开始,让小块工作,然后将它们加在一起。

例如,首先创建一个非常小的程序,尝试将图像读取到图像对象中,将其放在ImageIcon中,将ImageIcon放入JLabel中,然后在JOptionPane中显示JLabel,很简单,只是为了看看您是否可以在图像中读取OK,例如,类似这样的东西:

import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JOptionPane;

public class TestImages {

   // *** your image path will be different *****
   private static final String IMG_PATH = "src/images/image01.jpg";

   public static void main(String[] args) {
      try {
         BufferedImage img = ImageIO.read(new File(IMG_PATH));
         ImageIcon icon = new ImageIcon(img);
         JLabel label = new JLabel(icon);
         JOptionPane.showMessageDialog(null, label);
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

然后,当您完成此操作后,看看您现在是否可以创建一个JPanel,该JPanel在其paintcomponent方法中显示相同的Image,并在JOptionPane中显示此JPanel。

然后创建一个JFrame并在JFrame中显示图像保存JPanel。

通过连续的迭代,您将测试概念,纠正错误并构建程序。


答案 2
File input = new File("./setup/images/MineMenuPicture.jpg");

如果 是应用程序资源,则应将其放在 Jar 中,并通过从 中获取的 URL 进行访问。MineMenuPicture.jpgClass.getResource(String)


推荐