0

我正在尝试为 jLabel 对象设置图标,但它不起作用。如果 .getClass().getResource(path) 与 null 不同,我使用返回 ImageIcon 对象的方法,如果资源为 null,则显示消息“找不到资源:文件的路径”,但文件在那里!!!!如果我不选择文件,则应用默认的 ImageIcon 并且此工作没有问题。我不知道为什么这不起作用。

 private void jButton9ActionPerformed(java.awt.event.ActionEvent evt) {                                         
    try {
        JFrame upFile = new JFrame();
        File fichero = new File("");
        File x = new File("");
        CopyFile copy= new CopyFile();
        JFileChooser upfile = new JFileChooser(fichero.getCanonicalPath());
        int op = upfile.showOpenDialog(upFile);
                if (op == JFileChooser.APPROVE_OPTION) {
                    fichero = upfile.getSelectedFile();
                    File destino = new File(x.getCanonicalPath()+"\\src\\img\\libros_fotos\\"+fichero.getName());
                    copy.copyFile(fichero, destino);
                    SetLibro("/img/libros_fotos/"+destino.getName());
                    jLabel47.setIcon(createImageIcon(GetLibro()));
                    // commented out as suggested
                    //this.revalidate();
                    //this.repaint();
                }
                else {SetLibro("/img/blank.jpg");
                      jLabel47.setIcon(createImageIcon(GetLibro()));
                    // commented out as suggested
                    //this.revalidate();
                    //this.repaint();                            }
    } catch (IOException ex) {
        System.err.println(ex.getMessage());
    }
} 
4

1 回答 1

1

尝试添加

this.revalidate();  
this.repaint();  

添加图标后

于 2013-10-06T12:22:22.470 回答