图像未加载到 JPanel 中

Image didn't load in JPanel

我有一个 JPanel 名称 "imagePanel" 和一个按钮名称 "browseBtn"。全部包含在 JFrame class 中。当按下 browseBtn 时,会打开文件选择器,选择 PNG 图片文件后,图片会直接出现在 imagePanel 中。

这是 browseBtn 的操作事件

private void browseBtnActionPerformed(java.awt.event.ActionEvent evt) {                                          
    // TODO add your handling code here:
      JFileChooser fc = new JFileChooser();
    int result = fc.showOpenDialog(null);
    if (result == JFileChooser.APPROVE_OPTION) {
        File file = fc.getSelectedFile();
        if (accept(file)) {
            try {
                ImageIcon image = new ImageIcon(file.getPath());
                JLabel l = new JLabel(image);
                imagePanel.add(l);
            } catch (Exception e) {
                JOptionPane.showMessageDialog(this, "Error reading file !");
            }
        }
        else {
            JOptionPane.showMessageDialog(this, "Choose png file only !");
        } 
    }

}                                         

public boolean accept(File file) {
    return file.isDirectory() || file.getAbsolutePath().endsWith(".png");
}

我选择了正确的 .png 文件,但我不明白为什么图像没有显示在 imagePanel 中。你能解释一下吗? 干杯。

您应该避免在每次要显示图像时都创建新对象,想象一下,如果您更改它 5 次,您将创建 5 次对象而您只显示一个对象!

如评论中所说,最好的办法是在创建面板时创建标签,将其添加到所述面板,然后在加载图像时只需更改此标签的图标即可。

        browseBtn.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent e) {
            JFileChooser fc = new JFileChooser();
            int result = fc.showOpenDialog(null);
            if (result == JFileChooser.APPROVE_OPTION) {
                File file = fc.getSelectedFile();
                if (accept(file)) {
                    try {
                        ImageIcon image = new ImageIcon(file.getPath());
                        label.setIcon(image);
                    } catch (Exception ex) {
                        JOptionPane.showMessageDialog(this, "Error reading file !");
                    }
                }
                else {
                    JOptionPane.showMessageDialog(this, "Choose png file only !");
                } 
            }
        }

        public boolean accept(File file) {
            return file.isDirectory() || file.getAbsolutePath().endsWith(".png");
        }


    });

假设标签是对所述 JLabel 的引用,在组件初始化时创建。

或者您可以试试这个:

browseBtn.addActionListener(new ActionListener() {
@Override
 public void actionPerformed(ActionEvent e) {
  JFileChooser fc = new JFileChooser();
  int result = fc.showOpenDialog(null);
  if (result == JFileChooser.APPROVE_OPTION) {
  File file = fc.getSelectedFile();
  if (accept(file)) {
  try {
   ImageIcon imageIcon = new ImageIcon(new   ImageIcon(file.getPath()).getImage().getScaledInstance(20, 20,    Image.SCALE_DEFAULT)); //resizing
   label.setIcon(imageIcon);

  /*try { // or try this
     InputStream inStream =  this.getClass().getClassLoader().getResourceAsStream(file.getPath());
     BufferedImage img = ImageIO.read(inStream);
     Image rimg = img.getScaledInstance(width, height,  Image.SCALE_STANDARD);
     label.setIcon(rimg);
    } catch (IOException e) {}*/
  } catch (Exception ex) {JOptionPane.showMessageDialog(this, "Error reading file !");}
  } else {JOptionPane.showMessageDialog(this, "Choose png file  only  !");} 
 }
 }
  public boolean accept(File file) {
   return file.isDirectory() || file.getAbsolutePath().endsWith(".png");
  }
 });